QCaml/Utils/Bohr.mli

13 lines
171 B
OCaml

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