10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-08-16 09:48:30 +02:00
QCaml/Utils/Angstrom.mli

13 lines
193 B
OCaml

(** 3D point in cartesian coordinates, where units are Angstroms. *)
type t = private {
x : float ;
y : float ;
z : float ;
}
val make : Point.t -> t
(** Create from a {!Point.t}. *)