
######################
A3DMathFct3DLinearData
######################

.. c:struct:: A3DMathFct3DLinearData

   Linear transformation. 
   
   
      2.0
   
   
   
   The following equation shows the result of a linear transformation, where u,v,w are the parameters and x,y,z the results: 
   
   
   ::
   
      x = m_adMatrix[0][0] * u + m_adMatrix[1][0] * v + m_adMatrix[2][0] * w + m_adVector[0];
      y = m_adMatrix[0][1] * u + m_adMatrix[1][1] * v + m_adMatrix[2][1] * w + m_adVector[1];
      z = m_adMatrix[0][2] * u + m_adMatrix[1][2] * v + m_adMatrix[2][2] * w + m_adVector[2];
   
   
   Index
   =====
   
   .. rubric:: Variables
   
   
   .. rst-class:: api-xref-list
   
   
   * :c:member:`~A3DMathFct3DLinearData.m_adMatrix`
   * :c:member:`~A3DMathFct3DLinearData.m_adVector`
   
   



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

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


.. c:member:: A3DDouble A3DMathFct3DLinearData.m_adMatrix[3][3]

      .. rst-class:: sig-pretty-signature
      
         | :c:type:`~A3DDouble`
      
      Transformation matrix. 
      



.. c:member:: A3DDouble A3DMathFct3DLinearData.m_adVector[3]

      .. rst-class:: sig-pretty-signature
      
         | :c:type:`~A3DDouble`
      
      Translation vector. 
      




