us.ihmc.euclid.referenceFrame.interfaces.FrameTuple2DBasics Maven / Gradle / Ivy
package us.ihmc.euclid.referenceFrame.interfaces;
import org.ejml.data.DMatrix;
import us.ihmc.euclid.referenceFrame.FramePoint2D;
import us.ihmc.euclid.referenceFrame.FrameVector2D;
import us.ihmc.euclid.referenceFrame.ReferenceFrame;
import us.ihmc.euclid.tuple2D.interfaces.Tuple2DBasics;
import us.ihmc.euclid.tuple2D.interfaces.Tuple2DReadOnly;
import us.ihmc.euclid.tuple3D.interfaces.Tuple3DReadOnly;
/**
* {@code FrameTuple2DBasics} is the base implementation for {@link FramePoint2D} and
* {@link FrameVector2D}.
*
* In addition to representing a {@link Tuple2DBasics}, a {@link ReferenceFrame} is associated to a
* {@code FrameTuple2DBasics}. This allows, for instance, to enforce, at runtime, that operations on
* tuples occur in the same coordinate system.
*
*
* This interface allows for changing the reference frame in which this tuple is expressed.
*
*
* Because a {@code FrameTuple2DBasics} extends {@code Tuple2DBasics}, it is compatible with methods
* only requiring {@code Tuple2DBasics}. However, these methods do NOT assert that the operation
* occur in the proper coordinate system. Use this feature carefully and always prefer using methods
* requiring {@code FrameTuple2DBasics}.
*
*/
public interface FrameTuple2DBasics extends FixedFrameTuple2DBasics
{
/**
* Sets the reference frame of this tuple without updating or modifying its x and y components.
*
* @param referenceFrame the new reference frame for this frame tuple.
*/
void setReferenceFrame(ReferenceFrame referenceFrame);
/**
* Sets all the components of this frame tuple to zero and sets the current reference frame to
* {@code referenceFrame}.
*
* @param referenceFrame the new reference frame to be associated with this tuple.
*/
default void setToZero(ReferenceFrame referenceFrame)
{
setReferenceFrame(referenceFrame);
setToZero();
}
/**
* Sets all the components of this tuple to {@link Double#NaN} and sets the current reference frame
* to {@code referenceFrame}.
*
* @param referenceFrame the new reference frame to be associated with this tuple.
*/
default void setToNaN(ReferenceFrame referenceFrame)
{
setReferenceFrame(referenceFrame);
setToNaN();
}
/**
* Sets this frame tuple's components to {@code x} and {@code y} and sets its reference frame to
* {@code referenceFrame}.
*
* @param referenceFrame the new reference frame for this frame tuple.
* @param x the new value for the x-component of this tuple.
* @param y the new value for the y-component of this tuple.
*/
default void setIncludingFrame(ReferenceFrame referenceFrame, double x, double y)
{
setReferenceFrame(referenceFrame);
set(x, y);
}
/**
* Sets this frame tuple to {@code tuple2DReadOnly} and sets its current frame to
* {@code referenceFrame}.
*
* @param referenceFrame the new reference frame for this frame tuple.
* @param tuple2DReadOnly the tuple to copy the values from. Not modified.
*/
default void setIncludingFrame(ReferenceFrame referenceFrame, Tuple2DReadOnly tuple2DReadOnly)
{
setReferenceFrame(referenceFrame);
set(tuple2DReadOnly);
}
/**
* Sets this frame tuple to {@code tuple3DReadOnly} and sets its current frame to
* {@code referenceFrame}.
*
* @param referenceFrame the new reference frame for this frame tuple.
* @param tuple3DReadOnly the tuple to copy the values from. Not modified.
*/
default void setIncludingFrame(ReferenceFrame referenceFrame, Tuple3DReadOnly tuple3DReadOnly)
{
setReferenceFrame(referenceFrame);
set(tuple3DReadOnly);
}
/**
* Sets this tuple's components {@code x}, {@code y} in order from the given array
* {@code tupleArray} and sets this tuple frame to {@code referenceFrame}.
*
* @param referenceFrame the new reference frame for this tuple.
* @param tupleArray the array containing the new values for this tuple's components. Not
* modified.
*/
default void setIncludingFrame(ReferenceFrame referenceFrame, double[] tupleArray)
{
setReferenceFrame(referenceFrame);
set(tupleArray);
}
/**
* Sets this tuple's components {@code x}, {@code y} in order from the given array
* {@code tupleArray} and sets this tuple frame to {@code referenceFrame}.
*
* @param referenceFrame the new reference frame for this tuple.
* @param startIndex the first index to start reading from in the array.
* @param tupleArray the array containing the new values for this tuple's components. Not
* modified.
*/
default void setIncludingFrame(ReferenceFrame referenceFrame, int startIndex, double[] tupleArray)
{
setReferenceFrame(referenceFrame);
set(startIndex, tupleArray);
}
/**
* Sets this tuple's components {@code x}, {@code y} in order from the given column vector starting
* to read from its first row index and sets this tuple frame to {@code referenceFrame}.
*
* @param referenceFrame the new reference frame for this tuple.
* @param matrix the column vector containing the new values for this tuple's components.
* Not modified.
*/
default void setIncludingFrame(ReferenceFrame referenceFrame, DMatrix matrix)
{
setReferenceFrame(referenceFrame);
set(matrix);
}
/**
* Sets this tuple's components {@code x}, {@code y} in order from the given column vector starting
* to read from {@code startRow} and sets this tuple frame to {@code referenceFrame}.
*
* @param referenceFrame the new reference frame for this tuple.
* @param startRow the first row index to start reading in the matrix.
* @param matrix the column vector containing the new values for this tuple's components.
* Not modified.
*/
default void setIncludingFrame(ReferenceFrame referenceFrame, int startRow, DMatrix matrix)
{
setReferenceFrame(referenceFrame);
set(startRow, matrix);
}
/**
* Sets this tuple's components {@code x}, {@code y} in order from the given matrix starting to read
* from {@code startRow} at the column index {@code column} and sets this tuple frame to
* {@code referenceFrame}.
*
* @param referenceFrame the new reference frame for this tuple.
* @param startRow the first row index to start reading in the matrix.
* @param column the column index to read in the matrix.
* @param matrix the column vector containing the new values for this tuple's components.
* Not modified.
*/
default void setIncludingFrame(ReferenceFrame referenceFrame, int startRow, int column, DMatrix matrix)
{
setReferenceFrame(referenceFrame);
set(startRow, column, matrix);
}
/**
* Sets this frame tuple from the reference frame, x and y components of the given
* {@code frameTuple3DReadOnly}.
*
* @param frameTuple3DReadOnly the tuple to copy the values and reference frame from. Not modified.
*/
default void setIncludingFrame(FrameTuple3DReadOnly frameTuple3DReadOnly)
{
setReferenceFrame(frameTuple3DReadOnly.getReferenceFrame());
set((Tuple3DReadOnly) frameTuple3DReadOnly);
}
/**
* Sets this frame tuple to {@code other}.
*
* @param other the other frame tuple to copy the values and reference frame from. Not modified.
*/
default void setIncludingFrame(FrameTuple2DReadOnly other)
{
setReferenceFrame(other.getReferenceFrame());
set((Tuple2DReadOnly) other);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy