A3DMathFct1DPolynomData
-
struct
A3DMathFct1DPolynomData Polynomial structure.
2.0x = m_pdCoeffs[0] + m_pdCoeffs[1] * t + m_pdCoeffs[2] * t*t;
The array of coefficients is defined from least value to greatest value. The following equation shows the result of this function for a third-degree polynomial (
m_uiSizeis 3), where t is the parameter and x the result:
Variables
-
A3DUns32
A3DMathFct1DPolynomData.m_uiSize -
The size of
m_pdCoeffs.
-
A3DDouble *
A3DMathFct1DPolynomData.m_pdCoeffs -
Vector of coefficients.