
#######################
A3DMathFct1DPolynomData
#######################

.. c:struct:: A3DMathFct1DPolynomData

   Polynomial structure. 
   
   
      2.0
   
   
   
   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 (:c:member:`m_uiSize <A3DMathFct1DPolynomData.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;
   
   
   Index
   =====
   
   .. rubric:: Variables
   
   
   .. rst-class:: api-xref-list
   
   
   * :c:member:`~A3DMathFct1DPolynomData.m_uiSize`
   * :c:member:`~A3DMathFct1DPolynomData.m_pdCoeffs`
   
   



.. rst-class:: kind-group kind-variable

.. rubric:: Variables
   :class: kind-group-title


.. c:member:: A3DUns32 A3DMathFct1DPolynomData.m_uiSize

      .. rst-class:: sig-pretty-signature
      
         | :c:type:`~A3DUns32`
      
      The size of :c:member:`m_pdCoeffs <A3DMathFct1DPolynomData.m_pdCoeffs>`\ . 
      



.. c:member:: A3DDouble* A3DMathFct1DPolynomData.m_pdCoeffs

      .. rst-class:: sig-pretty-signature
      
         | :c:type:`~A3DDouble`\ *
      
      Vector of coefficients. 
      




