FigLat {pgs} | R Documentation |
Create an object of class "FigLat"
representing a lattice of figures.
FigLat(d, vlat, fig, lmat = matrix(0, nrow = d, ncol = 1))
d |
the dimension of the space where the lattice of figures lies. |
vlat |
a VecLat-class object representing the (translation) vector lattice. |
fig |
a Figure-class object representing the figure. |
lmat |
a matrix generating the L vector subspace. |
A FigLat-class
object.
# Square lattice of quadrats FigLat(2,RectLat2(),Quadrat(.5,.5)) # Lattice of horizontal lines FigLat(2,VecLat(c(0,1)),PointPattern(rep(0,2)),lmat=c(1,0))