mirror of
https://gitlab.com/scemama/QCaml.git
synced 2024-11-07 06:33:39 +01:00
13 lines
126 B
OCaml
13 lines
126 B
OCaml
|
type t = {
|
||
|
x : float ;
|
||
|
y : float ;
|
||
|
z : float ;
|
||
|
}
|
||
|
|
||
|
|
||
|
let make { Point.x ; y ; z } = { x ; y ; z }
|
||
|
(* = %identity *)
|
||
|
|
||
|
|
||
|
|