Package georegression.struct.curve
Class PolynomialQuadratic2D_F64
java.lang.Object
georegression.struct.curve.PolynomialQuadratic2D_F64
- All Implemented Interfaces:
MapFormattable
Quadratic curve in 2D: f(x,y) = a + b·x + c·y + d·xy + e·x2 + f·y2.
NOTE: The coefficient order is the reverse of what you will find for sake of consistency as the order of the polynomial is increased.
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionPolynomialQuadratic2D_F64(double a, double b, double c, double d, double e, double f) -
Method Summary
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 aCoefficients -
b
public double bCoefficients -
c
public double cCoefficients -
d
public double dCoefficients -
e
public double eCoefficients -
f
public double fCoefficients
-
-
Constructor Details
-
PolynomialQuadratic2D_F64
public PolynomialQuadratic2D_F64() -
PolynomialQuadratic2D_F64
public PolynomialQuadratic2D_F64(double a, double b, double c, double d, double e, double f)
-
-
Method Details
-
evaluate
public double evaluate(double x, double y) -
setTo
-
setTo
-
zero
public void zero() -
formatMap
- Specified by:
formatMapin interfaceMapFormattable
-
toString
-