Uses of Interface
org.apache.commons.geometry.core.partitioning.bsp.BSPTree
-
Packages that use BSPTree Package Description org.apache.commons.geometry.core.partitioning.bsp This package contains classes related to Binary Space Partitioning (BSP) trees.org.apache.commons.geometry.euclidean.oned This package provides basic 1D geometry components.org.apache.commons.geometry.euclidean.threed This package provides basic 3D geometry components.org.apache.commons.geometry.euclidean.twod This package provides basic 2D geometry components.org.apache.commons.geometry.spherical.oned This package provides basic geometry components on the 1-sphere.org.apache.commons.geometry.spherical.twod This package provides basic geometry components on the 2-sphere. -
-
Uses of BSPTree in org.apache.commons.geometry.core.partitioning.bsp
Classes in org.apache.commons.geometry.core.partitioning.bsp that implement BSPTree Modifier and Type Class Description class
AbstractBSPTree<P extends Point<P>,N extends AbstractBSPTree.AbstractNode<P,N>>
Abstract class for Binary Space Partitioning (BSP) tree implementations.class
AbstractRegionBSPTree<P extends Point<P>,N extends AbstractRegionBSPTree.AbstractRegionNode<P,N>>
AbstractBSPTree
specialized for representing regions of space.Methods in org.apache.commons.geometry.core.partitioning.bsp that return BSPTree Modifier and Type Method Description BSPTree<P,N>
BSPTree.Node. getTree()
Get theBSPTree
that owns the node.Methods in org.apache.commons.geometry.core.partitioning.bsp with parameters of type BSPTree Modifier and Type Method Description void
AbstractBSPTree. copy(BSPTree<P,N> src)
Make the current instance a deep copy of the argument.void
BSPTree. copy(BSPTree<P,N> src)
Make the current instance a deep copy of the argument. -
Uses of BSPTree in org.apache.commons.geometry.euclidean.oned
Classes in org.apache.commons.geometry.euclidean.oned that implement BSPTree Modifier and Type Class Description class
RegionBSPTree1D
Binary space partitioning (BSP) tree representing a region in one dimensional Euclidean space. -
Uses of BSPTree in org.apache.commons.geometry.euclidean.threed
Classes in org.apache.commons.geometry.euclidean.threed that implement BSPTree Modifier and Type Class Description class
RegionBSPTree3D
Binary space partitioning (BSP) tree representing a region in three dimensional Euclidean space. -
Uses of BSPTree in org.apache.commons.geometry.euclidean.twod
Classes in org.apache.commons.geometry.euclidean.twod that implement BSPTree Modifier and Type Class Description class
RegionBSPTree2D
Binary space partitioning (BSP) tree representing a region in two dimensional Euclidean space. -
Uses of BSPTree in org.apache.commons.geometry.spherical.oned
Classes in org.apache.commons.geometry.spherical.oned that implement BSPTree Modifier and Type Class Description class
RegionBSPTree1S
BSP tree representing regions in 1D spherical space. -
Uses of BSPTree in org.apache.commons.geometry.spherical.twod
Classes in org.apache.commons.geometry.spherical.twod that implement BSPTree Modifier and Type Class Description class
RegionBSPTree2S
BSP tree representing regions in 2D spherical space.
-