Package georegression.struct.curve
Interface PolynomialCurve_F64
- All Known Implementing Classes:
PolynomialCubic1D_F64
,PolynomialGeneral1D_F64
,PolynomialQuadratic1D_F64
public interface PolynomialCurve_F64
Interface for all polynomials
-
Method Summary
-
Method Details
-
get
double get(int coefficient) -
set
void set(int coefficient, double value) -
size
int size()Number of coeffients -
degree
int degree()Polynomial's degree. This is the number of coefficients minus one. -
zero
void zero()Sets all coefficients to zero
-