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