Home | History | Annotate | Download | only in transforms

Lines Matching refs:resultX

939 void TransformationMatrix::multVecMatrix(double x, double y, double& resultX, double& resultY) const
941 resultX = m_matrix[3][0] + x * m_matrix[0][0] + y * m_matrix[1][0];
945 resultX /= w;
950 void TransformationMatrix::multVecMatrix(double x, double y, double z, double& resultX, double& resultY, double& resultZ) const
952 resultX = m_matrix[3][0] + x * m_matrix[0][0] + y * m_matrix[1][0] + z * m_matrix[2][0];
957 resultX /= w;