Package georegression.struct.curve
Class ParabolaParametric_F32
java.lang.Object
georegression.struct.curve.ParabolaParametric_F32
- All Implemented Interfaces:
MapFormattable
@Generated("georegression.struct.curve.ParabolaParametric_F64")
public class ParabolaParametric_F32
extends Object
implements MapFormattable
Parametric form of parabola with 4 parameters.
x=A*t2 + B*t + C
y=D*t2 + E*t + F
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionParabolaParametric_F32(float a, float b, float c, float d, float e, float f) -
Method Summary
Modifier and TypeMethodDescriptionevaluate(float t) voidevaluate(float t, Point2D_F32 location) formatMap(MapPrintFormat format) voidsetTo(float a, float b, float c, float d, float e, float f) toString()voidzero()Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface org.ejml.MapFormattable
formatMap
-
Field Details
-
A
public float A -
B
public float B -
C
public float C -
D
public float D -
E
public float E -
F
public float F
-
-
Constructor Details
-
ParabolaParametric_F32
public ParabolaParametric_F32() -
ParabolaParametric_F32
-
ParabolaParametric_F32
public ParabolaParametric_F32(float a, float b, float c, float d, float e, float f)
-
-
Method Details
-
setTo
-
setTo
public void setTo(float a, float b, float c, float d, float e, float f) -
zero
public void zero() -
evaluate
-
evaluate
-
formatMap
- Specified by:
formatMapin interfaceMapFormattable
-
toString
-