Searched refs:resultY (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/transforms/
H A DTransformationMatrix.cpp939 void TransformationMatrix::multVecMatrix(double x, double y, double& resultX, double& resultY) const
942 resultY = m_matrix[3][1] + x * m_matrix[0][1] + y * m_matrix[1][1];
946 resultY /= w;
950 void TransformationMatrix::multVecMatrix(double x, double y, double z, double& resultX, double& resultY, double& resultZ) const argument
953 resultY = m_matrix[3][1] + x * m_matrix[0][1] + y * m_matrix[1][1] + z * m_matrix[2][1];
958 resultY /= w;

Completed in 36 milliseconds