Package org.robwork.sdurw_trajectory
Class LinearInterpolatorVector2D_f
- java.lang.Object
-
- org.robwork.sdurw_trajectory.InterpolatorVector2D_f
-
- org.robwork.sdurw_trajectory.LinearInterpolatorVector2D_f
-
public class LinearInterpolatorVector2D_f extends InterpolatorVector2D_f
Make a linear interpolation between to position
Given a start \mathbf{s}, end \mathbf{e} and duration d
the interpolation is implemented as \mathbf{x}(t)=\mathbf{s} + (\mathbf{e}-\mathbf{s})*t/d.
The template argument given needs to support addition with the "+" operator
and scaling with a double using the "*" operator.
For use with a rw::math::Transform3D see the template specialization
-
-
Constructor Summary
Constructors Constructor Description LinearInterpolatorVector2D_f(long cPtr, boolean cMemoryOwn)
LinearInterpolatorVector2D_f(Vector2Df start, Vector2Df end, double duration)
Construct LinearInterpolator starting a start and finishing in end
and taking duration time.
If duration <= 0 an exception is thrown
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Vector2Df
ddx(double t)
Acceleration at time tvoid
delete()
double
duration()
Returns the duration of the interpolator
The duration is defined as the time it takes to move from one end
of the interpolator to the other.Vector2Df
dx(double t)
Velocity at time tstatic long
getCPtr(LinearInterpolatorVector2D_f obj)
Vector2Df
getEnd()
Returns the end position of the interpolatorVector2Df
getStart()
Returns the start position of the interpolatorVector2Df
x(double t)
Position at time t-
Methods inherited from class org.robwork.sdurw_trajectory.InterpolatorVector2D_f
getCPtr
-
-
-
-
Constructor Detail
-
LinearInterpolatorVector2D_f
public LinearInterpolatorVector2D_f(long cPtr, boolean cMemoryOwn)
-
LinearInterpolatorVector2D_f
public LinearInterpolatorVector2D_f(Vector2Df start, Vector2Df end, double duration)
Construct LinearInterpolator starting a start and finishing in end
and taking duration time.
If duration <= 0 an exception is thrown
- Parameters:
start
- [in] Start of interpolatorend
- [in] End of interpolatorduration
- [in] Time it takes to from one end to the other.
-
-
Method Detail
-
getCPtr
public static long getCPtr(LinearInterpolatorVector2D_f obj)
-
delete
public void delete()
- Overrides:
delete
in classInterpolatorVector2D_f
-
x
public Vector2Df x(double t)
Description copied from class:InterpolatorVector2D_f
Position at time t- Overrides:
x
in classInterpolatorVector2D_f
- Parameters:
t
- [in] time between 0 and length- Returns:
- Position
-
dx
public Vector2Df dx(double t)
Description copied from class:InterpolatorVector2D_f
Velocity at time t- Overrides:
dx
in classInterpolatorVector2D_f
- Parameters:
t
- [in] time between 0 and length- Returns:
- Velocity
-
ddx
public Vector2Df ddx(double t)
Description copied from class:InterpolatorVector2D_f
Acceleration at time t- Overrides:
ddx
in classInterpolatorVector2D_f
- Parameters:
t
- [in] time between 0 and length- Returns:
- Acceleration
-
getStart
public Vector2Df getStart()
Returns the start position of the interpolator- Returns:
- The start position of the interpolator
-
getEnd
public Vector2Df getEnd()
Returns the end position of the interpolator- Returns:
- The end position of the interpolator
-
duration
public double duration()
Description copied from class:InterpolatorVector2D_f
Returns the duration of the interpolator
The duration is defined as the time it takes to move from one end
of the interpolator to the other.- Overrides:
duration
in classInterpolatorVector2D_f
- Returns:
- duration
-
-