Package org.robwork.sdurw_trajectory
Class RampInterpolatorVector3D_f
- java.lang.Object
-
- org.robwork.sdurw_trajectory.InterpolatorVector3D_f
-
- org.robwork.sdurw_trajectory.RampInterpolatorVector3D_f
-
public class RampInterpolatorVector3D_f extends InterpolatorVector3D_f
Make a ramp interpolation between two position
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 RampInterpolatorVector3D_f(long cPtr, boolean cMemoryOwn)RampInterpolatorVector3D_f(Vector3Df start, Vector3Df end, Vector3Df vellimits, Vector3Df acclimits)Construct RampInterpolator starting at start and finishing in end
with velocity limits vellimimts and acceleration limits acclimits.RampInterpolatorVector3D_f(Vector3Df start, Vector3Df end, Vector3Df vellimits, Vector3Df acclimits, double duration)Construct RampInterpolator starting at start and finishing in end
with velocity limits vellimimts and acceleration limits acclimits.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Vector3Dfddx(double t)Acceleration at time tvoiddelete()doubleduration()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.Vector3Dfdx(double t)Velocity at time tstatic longgetCPtr(RampInterpolatorVector3D_f obj)Vector3DfgetEnd()Returns the end position of the interpolatorVector3DfgetStart()Returns the start position of the interpolatorVector3Dfx(double t)Position at time t-
Methods inherited from class org.robwork.sdurw_trajectory.InterpolatorVector3D_f
getCPtr
-
-
-
-
Constructor Detail
-
RampInterpolatorVector3D_f
public RampInterpolatorVector3D_f(long cPtr, boolean cMemoryOwn)
-
RampInterpolatorVector3D_f
public RampInterpolatorVector3D_f(Vector3Df start, Vector3Df end, Vector3Df vellimits, Vector3Df acclimits, double duration)
Construct RampInterpolator starting at start and finishing in end
with velocity limits vellimimts and acceleration limits acclimits. The duration
will be calculated automatically. The start and end velocity and acceleration is zero.
If duration is not achievable given the velocity and acceleration limits then
the duration will be extended.- Parameters:
start- [in] Start of interpolatorend- [in] End of interpolatorvellimits- [in] velocity limitsacclimits- [in] acceleration limitsduration- [in] Time it takes to from one end to the other.
-
RampInterpolatorVector3D_f
public RampInterpolatorVector3D_f(Vector3Df start, Vector3Df end, Vector3Df vellimits, Vector3Df acclimits)
Construct RampInterpolator starting at start and finishing in end
with velocity limits vellimimts and acceleration limits acclimits. The duration
will be calculated automatically. The start and end velocity and acceleration is zero.
If duration is not achievable given the velocity and acceleration limits then
the duration will be extended.- Parameters:
start- [in] Start of interpolatorend- [in] End of interpolatorvellimits- [in] velocity limitsacclimits- [in] acceleration limits
-
-
Method Detail
-
getCPtr
public static long getCPtr(RampInterpolatorVector3D_f obj)
-
delete
public void delete()
- Overrides:
deletein classInterpolatorVector3D_f
-
x
public Vector3Df x(double t)
Description copied from class:InterpolatorVector3D_fPosition at time t- Overrides:
xin classInterpolatorVector3D_f- Parameters:
t- [in] time between 0 and length- Returns:
- Position
-
dx
public Vector3Df dx(double t)
Description copied from class:InterpolatorVector3D_fVelocity at time t- Overrides:
dxin classInterpolatorVector3D_f- Parameters:
t- [in] time between 0 and length- Returns:
- Velocity
-
ddx
public Vector3Df ddx(double t)
Description copied from class:InterpolatorVector3D_fAcceleration at time t- Overrides:
ddxin classInterpolatorVector3D_f- Parameters:
t- [in] time between 0 and length- Returns:
- Acceleration
-
getStart
public Vector3Df getStart()
Returns the start position of the interpolator- Returns:
- The start position of the interpolator
-
getEnd
public Vector3Df getEnd()
Returns the end position of the interpolator- Returns:
- The end position of the interpolator
-
duration
public double duration()
Description copied from class:InterpolatorVector3D_fReturns 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:
durationin classInterpolatorVector3D_f- Returns:
- duration
-
-