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 Details

    • a

      public float a
      Coefficients
    • b

      public float b
      Coefficients
    • c

      public float c
      Coefficients
    • d

      public float d
      Coefficients
    • e

      public float e
      Coefficients
    • f

      public float f
      Coefficients
  • 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