| Constructor and Description | 
|---|
| SplitSubHyperplane(SubHyperplane<U> plus,
                  SubHyperplane<U> minus)Build a SplitSubHyperplane from its parts. | 
| Modifier and Type | Method and Description | 
|---|---|
| SubHyperplane<U> | getMinus()Get the part of the sub-hyperplane on the minus side of the splitting hyperplane. | 
| SubHyperplane<U> | getPlus()Get the part of the sub-hyperplane on the plus side of the splitting hyperplane. | 
| Side | getSide()Get the side of the split sub-hyperplane with respect to its splitter. | 
public SplitSubHyperplane(SubHyperplane<U> plus, SubHyperplane<U> minus)
plus - part of the sub-hyperplane on the plus side of the
 splitting hyperplaneminus - part of the sub-hyperplane on the minus side of the
 splitting hyperplanepublic SubHyperplane<U> getPlus()
public SubHyperplane<U> getMinus()
public Side getSide()
Side.PLUS if only getPlus() is neither null nor empty,
 Side.MINUS if only getMinus() is neither null nor empty,
 Side.BOTH if both getPlus() and getMinus()
 are neither null nor empty or Side.HYPER if both getPlus() and
 getMinus() are either null or emptyCopyright © 2016–2020 Hipparchus.org. All rights reserved.