Searched refs:resultZ (Results 1 – 2 of 2) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/platform/transforms/ |
D | TransformationMatrix.h | 344 double resultZ; in internalMapPoint() local 345 multVecMatrix(sourcePoint.x(), sourcePoint.y(), sourcePoint.z(), resultX, resultY, resultZ); in internalMapPoint() 346 …loatPoint3D(static_cast<float>(resultX), static_cast<float>(resultY), static_cast<float>(resultZ)); in internalMapPoint()
|
D | TransformationMatrix.cpp | 1341 …ultVecMatrix(double x, double y, double z, double& resultX, double& resultY, double& resultZ) const in multVecMatrix() 1345 resultZ = m_matrix[3][2] + x * m_matrix[0][2] + y * m_matrix[1][2] + z * m_matrix[2][2]; in multVecMatrix() 1350 resultZ /= w; in multVecMatrix()
|