Package org.robwork.sdurw
Class LinearInterpolatord
- java.lang.Object
-
- org.robwork.sdurw.InterpolatorR1
-
- org.robwork.sdurw.LinearInterpolatord
-
public class LinearInterpolatord extends InterpolatorR1
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 LinearInterpolatord(double start, double end, double duration)Construct LinearInterpolator starting a start and finishing in end
and taking duration time.
If duration <= 0 an exception is thrown
LinearInterpolatord(long cPtr, boolean cMemoryOwn)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description doubleddx(double t)Conditional comment:
End of conditional comment.voiddelete()doubleduration()doubledx(double t)Conditional comment:
End of conditional comment.static longgetCPtr(LinearInterpolatord obj)doublegetEnd()Returns the end position of the interpolatordoublegetStart()Returns the start position of the interpolatordoublex(double t)Conditional comment:
End of conditional comment.-
Methods inherited from class org.robwork.sdurw.InterpolatorR1
getCPtr
-
-
-
-
Constructor Detail
-
LinearInterpolatord
public LinearInterpolatord(long cPtr, boolean cMemoryOwn)
-
LinearInterpolatord
public LinearInterpolatord(double start, double 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(LinearInterpolatord obj)
-
delete
public void delete()
- Overrides:
deletein classInterpolatorR1
-
x
public double x(double t)
Conditional comment:
End of conditional comment.- Overrides:
xin classInterpolatorR1
-
dx
public double dx(double t)
Conditional comment:
End of conditional comment.- Overrides:
dxin classInterpolatorR1
-
ddx
public double ddx(double t)
Conditional comment:
End of conditional comment.- Overrides:
ddxin classInterpolatorR1
-
getStart
public double getStart()
Returns the start position of the interpolator- Returns:
- The start position of the interpolator
-
getEnd
public double getEnd()
Returns the end position of the interpolator- Returns:
- The end position of the interpolator
-
duration
public double duration()
- Overrides:
durationin classInterpolatorR1
-
-