mirror of
https://github.com/LCPQ/quantum_package
synced 2024-11-04 05:03:54 +01:00
18 lines
405 B
OCaml
18 lines
405 B
OCaml
|
type t =
|
||
|
{ x : float;
|
||
|
y : float;
|
||
|
z : float;
|
||
|
} with sexp
|
||
|
|
||
|
(** Create from an xyz string *)
|
||
|
val of_string : Units.units -> string -> t
|
||
|
|
||
|
(** Convert to a string for printing *)
|
||
|
val to_string : Units.units -> t -> string
|
||
|
|
||
|
(** Computes the squared distance between 2 points *)
|
||
|
val distance2 : t -> t -> Qptypes.Positive_float.t
|
||
|
|
||
|
(** Computes the distance between 2 points *)
|
||
|
val distance : t -> t -> float
|