mirror of
https://gitlab.com/scemama/QCaml.git
synced 2024-11-13 01:23:41 +01:00
14 lines
204 B
OCaml
14 lines
204 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
|
|
(** Create from a {!Point.t}. *)
|
|
|
|
|