Class BoundaryAttribute<S extends Space>
- java.lang.Object
-
- org.hipparchus.geometry.partitioning.BoundaryAttribute<S>
-
- Type Parameters:
S
- Type of the space.
public class BoundaryAttribute<S extends Space> extends Object
Class holding boundary attributes.This class is used for the attributes associated with the nodes of region boundary shell trees returned by the
Region.getTree(includeBoundaryAttributes)
when the booleanincludeBoundaryAttributes
parameter is set totrue
. It contains the parts of the node cut sub-hyperplane that belong to the boundary.This class is a simple placeholder, it does not provide any processing methods.
- See Also:
Region.getTree(boolean)
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SubHyperplane<S>
getPlusInside()
Get the part of the node cut sub-hyperplane that belongs to the boundary and has the inside of the region on the plus side of its underlying hyperplane.SubHyperplane<S>
getPlusOutside()
Get the part of the node cut sub-hyperplane that belongs to the boundary and has the outside of the region on the plus side of its underlying hyperplane.NodesSet<S>
getSplitters()
Get the sub-hyperplanes that were used to split the boundary part.
-
-
-
Method Detail
-
getPlusOutside
public SubHyperplane<S> getPlusOutside()
Get the part of the node cut sub-hyperplane that belongs to the boundary and has the outside of the region on the plus side of its underlying hyperplane.- Returns:
- part of the node cut sub-hyperplane that belongs to the boundary and has the outside of the region on the plus side of its underlying hyperplane
-
getPlusInside
public SubHyperplane<S> getPlusInside()
Get the part of the node cut sub-hyperplane that belongs to the boundary and has the inside of the region on the plus side of its underlying hyperplane.- Returns:
- part of the node cut sub-hyperplane that belongs to the boundary and has the inside of the region on the plus side of its underlying hyperplane
-
-