Home
last modified time | relevance | path

Searched refs:rotate3d (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/transforms/
DRotateTransformOperation.cpp115 fromT.rotate3d((fromOp ? fromOp->m_x : 0), in blend()
120 toT.rotate3d((toOp ? toOp->m_x : 0), in blend()
DTransformationMatrix.h215 TransformationMatrix& rotate(double d) { return rotate3d(0, 0, d); } in rotate()
217 TransformationMatrix& rotate3d(double rx, double ry, double rz);
221 TransformationMatrix& rotate3d(double x, double y, double z, double angle);
DTransformOperations.cpp152 fromMatrix.rotate3d(fromTransform.x(), fromTransform.y(), fromTransform.z(), fromDegrees); in boundingBoxForArc()
153 toMatrix.rotate3d(fromTransform.x(), fromTransform.y(), fromTransform.z(), toDegrees); in boundingBoxForArc()
234 rotation.rotate3d(axis.x(), axis.y(), axis.z(), rad2deg(radians)); in boundingBoxForArc()
DRotateTransformOperation.h66 transform.rotate3d(m_x, m_y, m_z, m_angle); in apply()
DTransformationMatrix.cpp759 TransformationMatrix& TransformationMatrix::rotate3d(double x, double y, double z, double angle) in rotate3d() function in blink::TransformationMatrix
846 TransformationMatrix& TransformationMatrix::rotate3d(double rx, double ry, double rz) in rotate3d() function in blink::TransformationMatrix
/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSMatrix.cpp142 return CSSMatrix::create(TransformationMatrix(m_matrix).rotate3d(rotX, rotY, rotZ)); in rotate()
157 return CSSMatrix::create(TransformationMatrix(m_matrix).rotate3d(x, y, z, angle)); in rotateAxisAngle()