Class ArcsSet.Split
- java.lang.Object
-
- org.hipparchus.geometry.spherical.oned.ArcsSet.Split
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ArcsSet
getMinus()
Get the part of the arcs set on the minus side of the splitting arc.ArcsSet
getPlus()
Get the part of the arcs set on the plus side of the splitting arc.Side
getSide()
Get the side of the split arc with respect to its splitter.
-
-
-
Method Detail
-
getPlus
public ArcsSet getPlus()
Get the part of the arcs set on the plus side of the splitting arc.- Returns:
- part of the arcs set on the plus side of the splitting arc
-
getMinus
public ArcsSet getMinus()
Get the part of the arcs set on the minus side of the splitting arc.- Returns:
- part of the arcs set on the minus side of the splitting arc
-
getSide
public Side getSide()
Get the side of the split arc with respect to its splitter.- Returns:
Side.PLUS
if onlygetPlus()
returns non-null,Side.MINUS
if onlygetMinus()
returns non-null,Side.BOTH
if bothgetPlus()
andgetMinus()
return non-null orSide.HYPER
if bothgetPlus()
andgetMinus()
return null
-
-