Uses of Class
org.apache.commons.geometry.euclidean.oned.OrientedPoint
Packages that use OrientedPoint
Package
Description
This package provides basic 1D geometry components.
-
Uses of OrientedPoint in org.apache.commons.geometry.euclidean.oned
Methods in org.apache.commons.geometry.euclidean.oned that return OrientedPointModifier and TypeMethodDescriptionstatic OrientedPointOrientedPoints.createNegativeFacing(double location, org.apache.commons.numbers.core.Precision.DoubleEquivalence precision) Create a new instance at the given location, oriented so that it is facing negative infinity.static OrientedPointOrientedPoints.createNegativeFacing(Vector1D point, org.apache.commons.numbers.core.Precision.DoubleEquivalence precision) Create a new instance at the given point, oriented so that it is facing negative infinity.static OrientedPointOrientedPoints.createPositiveFacing(double location, org.apache.commons.numbers.core.Precision.DoubleEquivalence precision) Create a new instance at the given location, oriented so that it is facing positive infinity.static OrientedPointOrientedPoints.createPositiveFacing(Vector1D point, org.apache.commons.numbers.core.Precision.DoubleEquivalence precision) Create a new instance at the given point, oriented so that it is facing positive infinity.static OrientedPointOrientedPoints.fromLocationAndDirection(double location, boolean positiveFacing, org.apache.commons.numbers.core.Precision.DoubleEquivalence precision) Create a new instance from the given location and boolean direction value.static OrientedPointOrientedPoints.fromPointAndDirection(Vector1D point, boolean positiveFacing, org.apache.commons.numbers.core.Precision.DoubleEquivalence precision) Create a new instance from the given point and boolean direction value.static OrientedPointOrientedPoints.fromPointAndDirection(Vector1D point, Vector1D direction, org.apache.commons.numbers.core.Precision.DoubleEquivalence precision) Create a new instance from the given point and direction.Interval.getMaxBoundary()Get theOrientedPointforming the maximum bounding hyperplane of the interval, or null if none exists.Interval.getMinBoundary()Get theOrientedPointforming the minimum bounding hyperplane of the interval, or null if none exists.OrientedPoint.reverse()Return a hyperplane that has the opposite orientation as this instance.Transform this instance using the givenTransform.Methods in org.apache.commons.geometry.euclidean.oned with parameters of type OrientedPointModifier and TypeMethodDescriptionbooleanOrientedPoint.eq(OrientedPoint 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.static IntervalInterval.of(OrientedPoint a, OrientedPoint b) Create a new interval from the given hyperplanes.