Package georegression.struct.curve
Class ParabolaParametric_F64
java.lang.Object
georegression.struct.curve.ParabolaParametric_F64
- All Implemented Interfaces:
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_F64(double a, double b, double c, double d, double e, double f) -
Method Summary
Modifier and TypeMethodDescriptionevaluate(double t) voidevaluate(double t, Point2D_F64 location) formatMap(MapPrintFormat format) voidsetTo(double a, double b, double c, double d, double e, double 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 double A -
B
public double B -
C
public double C -
D
public double D -
E
public double E -
F
public double F
-
-
Constructor Details
-
ParabolaParametric_F64
public ParabolaParametric_F64() -
ParabolaParametric_F64
-
ParabolaParametric_F64
public ParabolaParametric_F64(double a, double b, double c, double d, double e, double f)
-
-
Method Details
-
setTo
-
setTo
public void setTo(double a, double b, double c, double d, double e, double f) -
zero
public void zero() -
evaluate
-
evaluate
-
formatMap
- Specified by:
formatMapin interfaceMapFormattable
-
toString
-