A3DMathFct1DPolynomData
-
struct
A3DMathFct1DPolynomData Polynomial structure.
2.0The 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:x = m_pdCoeffs[0] + m_pdCoeffs[1] * t + m_pdCoeffs[2] * t*t;
Variables
-
A3DUns32
A3DMathFct1DPolynomData.m_uiSize -
The size of:c:member:m_pdCoeffs <A3DMathFct1DPolynomData.m_pdCoeffs>.
-
A3DDouble *
A3DMathFct1DPolynomData.m_pdCoeffs -
Vector of coefficients.