/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.commons.math3.geometry.euclidean.oned;
import org.apache.commons.math3.geometry.Point;
import org.apache.commons.math3.geometry.Vector;
import org.apache.commons.math3.geometry.partitioning.Hyperplane;
This class represents a 1D oriented hyperplane.
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
/** This class represents a 1D oriented hyperplane.
* <p>An hyperplane in 1D is a simple point, its orientation being a
* boolean.</p>
* <p>Instances of this class are guaranteed to be immutable.</p>
* @since 3.0
*/
public class OrientedPoint implements Hyperplane<Euclidean1D> {
Default value for tolerance. /** Default value for tolerance. */
private static final double DEFAULT_TOLERANCE = 1.0e-10;
Vector location. /** Vector location. */
private Vector1D location;
Orientation. /** Orientation. */
private boolean direct;
Tolerance below which points are considered to belong to the hyperplane. /** Tolerance below which points are considered to belong to the hyperplane. */
private final double tolerance;
Simple constructor.
Params: - location – location of the hyperplane
- direct – if true, the plus side of the hyperplane is towards abscissas greater than
location
- tolerance – tolerance below which points are considered to belong to the hyperplane
Since: 3.3
/** Simple constructor.
* @param location location of the hyperplane
* @param direct if true, the plus side of the hyperplane is towards
* abscissas greater than {@code location}
* @param tolerance tolerance below which points are considered to belong to the hyperplane
* @since 3.3
*/
public OrientedPoint(final Vector1D location, final boolean direct, final double tolerance) {
this.location = location;
this.direct = direct;
this.tolerance = tolerance;
}
Simple constructor.
Params: - location – location of the hyperplane
- direct – if true, the plus side of the hyperplane is towards abscissas greater than
location
Deprecated: as of 3.3, replaced with OrientedPoint(Vector1D, boolean, double)
/** Simple constructor.
* @param location location of the hyperplane
* @param direct if true, the plus side of the hyperplane is towards
* abscissas greater than {@code location}
* @deprecated as of 3.3, replaced with {@link #OrientedPoint(Vector1D, boolean, double)}
*/
@Deprecated
public OrientedPoint(final Vector1D location, final boolean direct) {
this(location, direct, DEFAULT_TOLERANCE);
}
Copy the instance.
Since instances are immutable, this method directly returns
the instance.
Returns: the instance itself
/** Copy the instance.
* <p>Since instances are immutable, this method directly returns
* the instance.</p>
* @return the instance itself
*/
public OrientedPoint copySelf() {
return this;
}
Get the offset (oriented distance) of a vector.
Params: - vector – vector to check
Returns: offset of the vector
/** Get the offset (oriented distance) of a vector.
* @param vector vector to check
* @return offset of the vector
*/
public double getOffset(Vector<Euclidean1D> vector) {
return getOffset((Point<Euclidean1D>) vector);
}
{@inheritDoc} /** {@inheritDoc} */
public double getOffset(final Point<Euclidean1D> point) {
final double delta = ((Vector1D) point).getX() - location.getX();
return direct ? delta : -delta;
}
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 the
SubHyperplane
class implementation to work properly, it should not be used otherwise.
Returns: a dummy sub hyperplane
/** Build a region covering the whole hyperplane.
* <p>Since this class represent zero dimension spaces which does
* not have lower dimension sub-spaces, this method returns a dummy
* implementation of a {@link
* org.apache.commons.math3.geometry.partitioning.SubHyperplane SubHyperplane}.
* This implementation is only used to allow the {@link
* org.apache.commons.math3.geometry.partitioning.SubHyperplane
* SubHyperplane} class implementation to work properly, it should
* <em>not</em> be used otherwise.</p>
* @return a dummy sub hyperplane
*/
public SubOrientedPoint wholeHyperplane() {
return new SubOrientedPoint(this, null);
}
Build a region covering the whole space.
Returns: a region containing the instance (really an IntervalsSet
instance)
/** Build a region covering the whole space.
* @return a region containing the instance (really an {@link
* IntervalsSet IntervalsSet} instance)
*/
public IntervalsSet wholeSpace() {
return new IntervalsSet(tolerance);
}
{@inheritDoc} /** {@inheritDoc} */
public boolean sameOrientationAs(final Hyperplane<Euclidean1D> other) {
return !(direct ^ ((OrientedPoint) other).direct);
}
{@inheritDoc}
Since: 3.3
/** {@inheritDoc}
* @since 3.3
*/
public Point<Euclidean1D> project(Point<Euclidean1D> point) {
return location;
}
{@inheritDoc}
Since: 3.3
/** {@inheritDoc}
* @since 3.3
*/
public double getTolerance() {
return tolerance;
}
Get the hyperplane location on the real line.
Returns: the hyperplane location
/** Get the hyperplane location on the real line.
* @return the hyperplane location
*/
public Vector1D getLocation() {
return location;
}
Check if the hyperplane orientation is direct.
Returns: true if the plus side of the hyperplane is towards
abscissae greater than hyperplane location
/** Check if the hyperplane orientation is direct.
* @return true if the plus side of the hyperplane is towards
* abscissae greater than hyperplane location
*/
public boolean isDirect() {
return direct;
}
Revert the instance.
/** Revert the instance.
*/
public void revertSelf() {
direct = !direct;
}
}