Uses of Class
org.apache.commons.geometry.spherical.oned.CutAngle

Packages that use CutAngle
Package
Description
This package provides basic geometry components on the 1-sphere.
  • Uses of CutAngle in org.apache.commons.geometry.spherical.oned

    Modifier and Type
    Method
    Description
    static CutAngle
    CutAngles.createNegativeFacing(double azimuth, org.apache.commons.numbers.core.Precision.DoubleEquivalence precision)
    Create a new instance at the given azimuth, oriented so that the plus side of the hyperplane points toward decreasing angular values.
    static CutAngle
    CutAngles.createNegativeFacing(Point1S point, org.apache.commons.numbers.core.Precision.DoubleEquivalence precision)
    Create a new instance at the given point, oriented so that the plus side of the hyperplane points toward decreasing angular values.
    static CutAngle
    CutAngles.createPositiveFacing(double azimuth, org.apache.commons.numbers.core.Precision.DoubleEquivalence precision)
    Create a new instance at the given azimuth, oriented so that the plus side of the hyperplane points toward increasing angular values.
    static CutAngle
    CutAngles.createPositiveFacing(Point1S point, org.apache.commons.numbers.core.Precision.DoubleEquivalence precision)
    Create a new instance at the given point, oriented so that the plus side of the hyperplane points toward increasing angular values.
    static CutAngle
    CutAngles.fromAzimuthAndDirection(double azimuth, boolean positiveFacing, org.apache.commons.numbers.core.Precision.DoubleEquivalence precision)
    Create a new instance from the given azimuth and direction.
    static CutAngle
    CutAngles.fromPointAndDirection(Point1S point, boolean positiveFacing, org.apache.commons.numbers.core.Precision.DoubleEquivalence precision)
    Create a new instance from the given point and direction.
    AngularInterval.getMaxBoundary()
    Get the maximum point for the interval.
    AngularInterval.getMinBoundary()
    Get the minimum boundary for the interval, or null if the interval represents the full space.
    CutAngle.reverse()
    Return a hyperplane that has the opposite orientation as this instance.
    CutAngle.transform(Transform<Point1S> transform)
    Transform this instance using the given Transform.
    Methods in org.apache.commons.geometry.spherical.oned with parameters of type CutAngle
    Modifier and Type
    Method
    Description
    boolean
    CutAngle.eq(CutAngle other, org.apache.commons.numbers.core.Precision.DoubleEquivalence precision)
    Return true if this instance should be considered equivalent to the argument, using the given precision context for comparison.
    AngularInterval.Convex.of(CutAngle a, CutAngle b)
    Return an instance representing the convex angular interval between the given oriented points.
    AngularInterval.of(CutAngle a, CutAngle b)
    Return an instance representing the angular interval between the given oriented points.
    AngularInterval.Convex.splitDiameter(CutAngle splitter)
    Split the instance along a circle diameter.The diameter is defined by the given split point and its reversed antipodal point.
    RegionBSPTree1S.splitDiameter(CutAngle splitter)
    Split the instance along a circle diameter.The diameter is defined by the given split point and its reversed antipodal point.