Class OrientedPoint
- All Implemented Interfaces:
Hyperplane<Euclidean1D>
An hyperplane in 1D is a simple point, its orientation being a boolean.
Instances of this class are guaranteed to be immutable.
- Since:
- 3.0
-
Constructor Summary
ConstructorsConstructorDescriptionOrientedPoint(Vector1D location, boolean direct) Deprecated.OrientedPoint(Vector1D location, boolean direct, double tolerance) Simple constructor. -
Method Summary
Modifier and TypeMethodDescriptioncopySelf()Copy the instance.Get the hyperplane location on the real line.doublegetOffset(Point<Euclidean1D> point) Get the offset (oriented distance) of a point.doublegetOffset(Vector<Euclidean1D> vector) Get the offset (oriented distance) of a vector.doubleGet the tolerance below which points are considered to belong to the hyperplane.booleanisDirect()Check if the hyperplane orientation is direct.project(Point<Euclidean1D> point) Project a point to the hyperplane.voidRevert the instance.booleansameOrientationAs(Hyperplane<Euclidean1D> other) Check if the instance has the same orientation as another hyperplane.Build a region covering the whole hyperplane.Build a region covering the whole space.
-
Constructor Details
-
OrientedPoint
Simple constructor.- Parameters:
location- location of the hyperplanedirect- if true, the plus side of the hyperplane is towards abscissas greater thanlocationtolerance- tolerance below which points are considered to belong to the hyperplane- Since:
- 3.3
-
OrientedPoint
Deprecated.as of 3.3, replaced withOrientedPoint(Vector1D, boolean, double)Simple constructor.- Parameters:
location- location of the hyperplanedirect- if true, the plus side of the hyperplane is towards abscissas greater thanlocation
-
-
Method Details
-
copySelf
Copy the instance.Since instances are immutable, this method directly returns the instance.
- Specified by:
copySelfin interfaceHyperplane<Euclidean1D>- Returns:
- the instance itself
-
getOffset
Get the offset (oriented distance) of a vector.- Parameters:
vector- vector to check- Returns:
- offset of the vector
-
getOffset
Get the offset (oriented distance) of a point.The offset is 0 if the point is on the underlying hyperplane, it is positive if the point is on one particular side of the hyperplane, and it is negative if the point is on the other side, according to the hyperplane natural orientation.
- Specified by:
getOffsetin interfaceHyperplane<Euclidean1D>- Parameters:
point- point to check- Returns:
- offset of the point
-
wholeHyperplane
Build a region covering the whole hyperplane.Since this class represent zero dimension spaces which does not have lower dimension sub-spaces, this method returns a dummy implementation of a
SubHyperplane. This implementation is only used to allow theSubHyperplaneclass implementation to work properly, it should not be used otherwise.- Specified by:
wholeHyperplanein interfaceHyperplane<Euclidean1D>- Returns:
- a dummy sub hyperplane
-
wholeSpace
Build a region covering the whole space.- Specified by:
wholeSpacein interfaceHyperplane<Euclidean1D>- Returns:
- a region containing the instance (really an
IntervalsSetinstance)
-
sameOrientationAs
Check if the instance has the same orientation as another hyperplane.This method is expected to be called on parallel hyperplanes. The method should not re-check for parallelism, only for orientation, typically by testing something like the sign of the dot-products of normals.
- Specified by:
sameOrientationAsin interfaceHyperplane<Euclidean1D>- Parameters:
other- other hyperplane to check against the instance- Returns:
- true if the instance and the other hyperplane have the same orientation
-
project
Project a point to the hyperplane.- Specified by:
projectin interfaceHyperplane<Euclidean1D>- Parameters:
point- point to project- Returns:
- projected point
- Since:
- 3.3
-
getTolerance
public double getTolerance()Get the tolerance below which points are considered to belong to the hyperplane.- Specified by:
getTolerancein interfaceHyperplane<Euclidean1D>- Returns:
- tolerance below which points are considered to belong to the hyperplane
- Since:
- 3.3
-
getLocation
Get the hyperplane location on the real line.- Returns:
- the hyperplane location
-
isDirect
public boolean isDirect()Check if the hyperplane orientation is direct.- Returns:
- true if the plus side of the hyperplane is towards abscissae greater than hyperplane location
-
revertSelf
public void revertSelf()Revert the instance.
-
OrientedPoint(Vector1D, boolean, double)