Class PolynomialQuadratic2D_F64

java.lang.Object
georegression.struct.curve.PolynomialQuadratic2D_F64

public class PolynomialQuadratic2D_F64 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 double a
      Coefficients
    • b

      public double b
      Coefficients
    • c

      public double c
      Coefficients
    • d

      public double d
      Coefficients
    • e

      public double e
      Coefficients
    • f

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