Module Gg.Size3
type t
= size3
The type for 3D sizes.
val dim : int
dim
is the dimension of sizes of typesize3
.
Constructors, accessors and constants
val v : float -> float -> float -> size3
v w h d
is a size of widthw
, heighth
and depthd
.
val w : size3 -> float
w s
is the width ofs
.
val h : size3 -> float
h s
is the height ofs
.
val d : size3 -> float
d s
is the depth ofs
.
val zero : size3
zero
is the zero size, zero width, height and depth.
val unit : size3
unit
is the unit size, one width, height and depth.