Module Gg.P2
type t
= p2
The type for points.
val dim : int
dim
is the dimension of points of typep2
.
type mh
= m3
The type for matrices representing linear transformations of homogenous 2D space.
Constructors, accessors and constants
val v : float -> float -> p2
v x y
is the point(x y)
.
val x : p2 -> float
x p
is the x coordinate ofp
.
val y : p2 -> float
y p
is the y coordinate ofp
.
val o : p2
o
is the point(0 0)
.
Functions
val tr : m3 -> p2 -> p2
tr m p
is the affine transform in homogenous 2D space of the pointp
bym
.Note. Since
m
is supposed to be affine the function ignores the last row ofm
.p
is treated as a finite point (its last coordinate in homogenous space is 1). UseV2.tr
to transform vectors (infinite points).