mirror of
https://gitlab.com/scemama/QCaml.git
synced 2024-11-06 22:23:42 +01:00
11 lines
91 B
OCaml
11 lines
91 B
OCaml
|
type t = private {
|
||
|
x : float ;
|
||
|
y : float ;
|
||
|
z : float ;
|
||
|
}
|
||
|
|
||
|
|
||
|
val make : Point.t -> t
|
||
|
|
||
|
|