A3DMathFct1DPolynomData
Fields
Detailed Description
-
struct A3DMathFct1DPolynomData
Polynomial structure.
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_uiSize is 3), where t is the parameter and x the result:
x = m_pdCoeffs[0] + m_pdCoeffs[1] * t + m_pdCoeffs[2] * t*t;
- Version
2.0
Public Members
-
A3DUns32 m_uiSize
The size of m_pdCoeffs.