Uses of Class
org.apache.commons.math3.geometry.partitioning.NodesSet
-
Packages that use NodesSet Package Description org.apache.commons.math3.geometry.partitioning This package provides classes to implement Binary Space Partition trees. -
-
Uses of NodesSet in org.apache.commons.math3.geometry.partitioning
Fields in org.apache.commons.math3.geometry.partitioning declared as NodesSet Modifier and Type Field Description private NodesSet<S>
Characterization. insideSplitters
Nodes that were used to split the outside touching part.private NodesSet<S>
Characterization. outsideSplitters
Nodes that were used to split the outside touching part.private NodesSet<S>
BoundaryAttribute. splitters
Sub-hyperplanes that were used to split the boundary part.Methods in org.apache.commons.math3.geometry.partitioning that return NodesSet Modifier and Type Method Description NodesSet<S>
Characterization. getInsideSplitters()
Get the nodes that were used to split the inside touching part.NodesSet<S>
Characterization. getOutsideSplitters()
Get the nodes that were used to split the outside touching part.NodesSet<S>
BoundaryAttribute. getSplitters()
Get the sub-hyperplanes that were used to split the boundary part.Constructors in org.apache.commons.math3.geometry.partitioning with parameters of type NodesSet Constructor Description BoundaryAttribute(SubHyperplane<S> plusOutside, SubHyperplane<S> plusInside, NodesSet<S> splitters)
Simple constructor.
-