Module Values.PoseSource

Indicates the pose of the face as determined by its pitch, roll, and yaw.

Sourcetype nonrec t = {
  1. roll : Degree.t option;
    (*

    Value representing the face rotation on the roll axis.

    *)
  2. yaw : Degree.t option;
    (*

    Value representing the face rotation on the yaw axis.

    *)
  3. pitch : Degree.t option;
    (*

    Value representing the face rotation on the pitch axis.

    *)
}
Sourceval make : ?roll:??? -> ?yaw:??? -> ?pitch:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Float of Degree.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t