module Size3:sig
..end
typet =
Gg.size3
val dim : int
val v : float -> float -> float -> Gg.size3
v w h d
is a size of width w
, height h
and depth d
.val w : Gg.size3 -> float
w s
is the width of s
.val h : Gg.size3 -> float
h s
is the height of s
.val d : Gg.size3 -> float
d s
is the depth of s
.val zero : Gg.size3
zero
is the zero size, zero width, height and depth.val unit : Gg.size3
unit
is the unit size, one width, height and depth.