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 ArcsSetgetMinus()Get the part of the arcs set on the minus side of the splitting arc.ArcsSetgetPlus()Get the part of the arcs set on the plus side of the splitting arc.SidegetSide()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.PLUSif onlygetPlus()returns non-null,Side.MINUSif onlygetMinus()returns non-null,Side.BOTHif bothgetPlus()andgetMinus()return non-null orSide.HYPERif bothgetPlus()andgetMinus()return null
-
-