mirror of
https://gitlab.com/scemama/QCaml.git
synced 2024-10-31 19:23:40 +01:00
12 lines
105 B
Standard ML
12 lines
105 B
Standard ML
type t = {
|
|
x : float ;
|
|
y : float ;
|
|
z : float ;
|
|
}
|
|
|
|
|
|
external make : Point.t -> t = "%identity"
|
|
|
|
|
|
|