10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-06-24 06:02:06 +02:00
QCaml/Utils/Angstrom.mli
2018-02-24 23:57:38 +01:00

12 lines
160 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