mirror of
https://gitlab.com/scemama/QCaml.git
synced 2024-10-31 19:23:40 +01:00
13 lines
171 B
OCaml
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
|
|
|
|
|