Class PolynomialCubic1D_F32

java.lang.Object
georegression.struct.curve.PolynomialCubic1D_F32
All Implemented Interfaces:
PolynomialCurve_F32

@Generated("georegression.struct.curve.PolynomialCubic1D_F64") public class PolynomialCubic1D_F32 extends Object implements PolynomialCurve_F32
Quadratic curve in 1D: f(x) = a + bx + c x2 + d x3

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
  • Constructor Details

    • PolynomialCubic1D_F32

      public PolynomialCubic1D_F32()
    • PolynomialCubic1D_F32

      public PolynomialCubic1D_F32(float a, float b, float c, float d)
  • Method Details