Package georegression.struct.curve
Class PolynomialQuadratic2D_F32
java.lang.Object
georegression.struct.curve.PolynomialQuadratic2D_F32
@Generated("georegression.struct.curve.PolynomialQuadratic2D_F64")
public class PolynomialQuadratic2D_F32
extends Object
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
-
Constructor Summary
ConstructorDescriptionPolynomialQuadratic2D_F32
(float a, float b, float c, float d, float e, float f) -
Method Summary
-
Field Details
-
a
public float aCoefficients -
b
public float bCoefficients -
c
public float cCoefficients -
d
public float dCoefficients -
e
public float eCoefficients -
f
public float fCoefficients
-
-
Constructor Details
-
PolynomialQuadratic2D_F32
public PolynomialQuadratic2D_F32() -
PolynomialQuadratic2D_F32
public PolynomialQuadratic2D_F32(float a, float b, float c, float d, float e, float f)
-
-
Method Details