Empeld
Empeld plugin documentation.
|
A class of helpers that iterate through vector-space More...
Static Public Member Functions | |
static IEnumerable< Vector3i > | IterateCubeFaces (int x, int y, int z) |
Iterate accross the 6 faces of a cube More... | |
static IEnumerable< Vector3i > | IterateSpace (int w, int l, int h) |
Iterates the space. More... | |
static IEnumerable< Vector3i > | IterateSpace (int x, int y, int z, int w, int l, int h) |
Iterates across space w,l,h starting at x,y,z More... | |
static IEnumerable< Vector3i > | IterateVolume (this Volume vol) |
Enumerates all points in a volume. If volume size=0, then no points More... | |
static IEnumerable< Vector3i > | InnerIterateSpace (int x, int y, int z, int radius_wl, int radius_h) |
Enumerates through a cubic area starting at the center and moving outward More... | |
static IEnumerable< Vector3i > | InnerIterateSpace (int w, int l, int h) |
Iterates through a space of a size, starting in the center and moving outward. RADIUS (negatives included) More... | |
A class of helpers that iterate through vector-space
|
static |
Enumerates through a cubic area starting at the center and moving outward
x | X. |
y | Y. |
z | Z. |
radius_wl | Wl. |
radius_h | H. |
|
static |
Iterates through a space of a size, starting in the center and moving outward. RADIUS (negatives included)
w | The width. |
l | L. |
h | The height. |
|
static |
Iterate accross the 6 faces of a cube
x | X. |
y | Y. |
z | Z. |
|
static |
Iterates the space.
w | W. |
l | L. |
h | H. |
|
static |
Iterates across space w,l,h starting at x,y,z
x | X. |
y | Y. |
z | Z. |
w | W. |
l | L. |
h | H. |
|
static |
Enumerates all points in a volume. If volume size=0, then no points
vol | Vol. |