Package org.robwork.sdurw_trajectory
Class ParabolicBlendVector3D_f
- java.lang.Object
-
- org.robwork.sdurw_trajectory.BlendVector3D_f
-
- org.robwork.sdurw_trajectory.ParabolicBlendVector3D_f
-
public class ParabolicBlendVector3D_f extends BlendVector3D_f
Implements a parabolic blend
A parabolic blend is characterized by a constant acceleration through the blend. The current
implementation only supports blending between linear segments.
-
-
Constructor Summary
Constructors Constructor Description ParabolicBlendVector3D_f(long cPtr, boolean cMemoryOwn)
ParabolicBlendVector3D_f(LinearInterpolatorVector3D_fCPtr line1, LinearInterpolatorVector3D_fCPtr line2, double tau)
Constructs parabolic blend between line1 and line2 with tau
as blend time.ParabolicBlendVector3D_f(LinearInterpolatorVector3D_fPtr line1, LinearInterpolatorVector3D_fPtr line2, double tau)
Constructs parabolic blend between line1 and line2 with tau
as blend time.ParabolicBlendVector3D_f(LinearInterpolatorVector3D_f line1, LinearInterpolatorVector3D_f line2, double tau)
Constructs parabolic blend between line1 and line2 with tau
as blend time
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Vector3Df
ddx(double t)
Conditional comment:
End of conditional comment.void
delete()
double
duration()
get the duration of the blendVector3Df
dx(double t)
Conditional comment:
End of conditional comment.static long
getCPtr(ParabolicBlendVector3D_f obj)
double
tau1()
Conditional comment:
End of conditional comment.
Note: For ParabolicBlend tau1()==tau2()double
tau2()
Conditional comment:
End of conditional comment.
Note: For ParabolicBlend tau1()==tau2()Vector3Df
x(double t)
Conditional comment:
End of conditional comment.-
Methods inherited from class org.robwork.sdurw_trajectory.BlendVector3D_f
getCPtr
-
-
-
-
Constructor Detail
-
ParabolicBlendVector3D_f
public ParabolicBlendVector3D_f(long cPtr, boolean cMemoryOwn)
-
ParabolicBlendVector3D_f
public ParabolicBlendVector3D_f(LinearInterpolatorVector3D_f line1, LinearInterpolatorVector3D_f line2, double tau)
Constructs parabolic blend between line1 and line2 with tau
as blend time- Parameters:
line1
- [in] First segmentline2
- [in] Second segmenttau
- [in] Blend time
-
ParabolicBlendVector3D_f
public ParabolicBlendVector3D_f(LinearInterpolatorVector3D_fCPtr line1, LinearInterpolatorVector3D_fCPtr line2, double tau)
Constructs parabolic blend between line1 and line2 with tau
as blend time. The segments is copied for internal storage- Parameters:
line1
- [in] First segmentline2
- [in] Second segmenttau
- [in] Blend time
-
ParabolicBlendVector3D_f
public ParabolicBlendVector3D_f(LinearInterpolatorVector3D_fPtr line1, LinearInterpolatorVector3D_fPtr line2, double tau)
Constructs parabolic blend between line1 and line2 with tau
as blend time. The segments is copied for internal storage- Parameters:
line1
- [in] First segmentline2
- [in] Second segmenttau
- [in] Blend time
-
-
Method Detail
-
getCPtr
public static long getCPtr(ParabolicBlendVector3D_f obj)
-
delete
public void delete()
- Overrides:
delete
in classBlendVector3D_f
-
x
public Vector3Df x(double t)
Conditional comment:
End of conditional comment.- Overrides:
x
in classBlendVector3D_f
- Parameters:
t
- [in] t\in[0,\tau_1+\tau_2]- Returns:
- Position at time t
-
dx
public Vector3Df dx(double t)
Conditional comment:
End of conditional comment.- Overrides:
dx
in classBlendVector3D_f
- Parameters:
t
- [in] t\in[0,\tau_1+\tau_2]- Returns:
- Velocity at time t
-
ddx
public Vector3Df ddx(double t)
Conditional comment:
End of conditional comment.- Overrides:
ddx
in classBlendVector3D_f
- Parameters:
t
- [in] t\in[0,\tau_1+\tau_2]- Returns:
- Acceleration at time t
-
duration
public double duration()
get the duration of the blend- Returns:
- duration
-
tau1
public double tau1()
Conditional comment:
End of conditional comment.
Note: For ParabolicBlend tau1()==tau2()- Overrides:
tau1
in classBlendVector3D_f
- Returns:
- \tau_1
-
tau2
public double tau2()
Conditional comment:
End of conditional comment.
Note: For ParabolicBlend tau1()==tau2()- Overrides:
tau2
in classBlendVector3D_f
- Returns:
- \tau_2
-
-