public final class SubdivisionIntersection
extends java.lang.Object
Subdivision
instances.
Immutable class containing the result of the Subdivision.intersection(org.kynosarges.tektosyne.subdivision.Subdivision, org.kynosarges.tektosyne.subdivision.Subdivision)
method
of the Subdivision
class.Modifier and Type | Field and Description |
---|---|
Subdivision |
division
The output
Subdivision that is the intersection of both input instances. |
int[] |
faceKeys1
Maps
division face keys to those of the first input Subdivision . |
int[] |
faceKeys2
Maps
division face keys to those of the second input Subdivision . |
public final Subdivision division
Subdivision
that is the intersection of both input instances.public final int[] faceKeys1
division
face keys to those of the first input Subdivision
.
Always equal in size to the Subdivision.faces()
collection of division
.
Holds the original SubdivisionFace
key of the first input Subdivision
at each index that equals the new key in the output division
.public final int[] faceKeys2
division
face keys to those of the second input Subdivision
.
Always equal in size to the Subdivision.faces()
collection of division
.
Holds the original SubdivisionFace
key of the second input Subdivision
at each index that equals the new key in the output division
.