10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-06-16 18:25:20 +02:00
QCaml/Utils/Point.mli
2018-02-26 10:43:21 +01:00

11 lines
126 B
OCaml

(** A point in a 3D space. Used by {!Angstrom.t} and {!Bohr.t}.
*)
type t = {
x : float ;
y : float ;
z : float ;
}