HomeSort by relevance Sort by last modified time
    Searched refs:rotate3d (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/transforms/
RotateTransformOperation.cpp 117 fromT.rotate3d((fromOp ? fromOp->m_x : 0),
122 toT.rotate3d((toOp ? toOp->m_x : 0),
151 return RotateTransformOperation::create(x, y, z, angle, Rotate3D);
RotateTransformOperation.h 68 transform.rotate3d(m_x, m_y, m_z, m_angle);
80 ASSERT(type == RotateX || type == RotateY || type == RotateZ || type == Rotate3D);
TransformationMatrix.h 215 TransformationMatrix& rotate(double d) { return rotate3d(0, 0, d); }
217 TransformationMatrix& rotate3d(double rx, double ry, double rz);
221 TransformationMatrix& rotate3d(double x, double y, double z, double angle);
TransformOperations.cpp 154 fromMatrix.rotate3d(fromTransform.x(), fromTransform.y(), fromTransform.z(), fromDegrees);
155 toMatrix.rotate3d(fromTransform.x(), fromTransform.y(), fromTransform.z(), toDegrees);
236 rotation.rotate3d(axis.x(), axis.y(), axis.z(), rad2deg(radians));
307 case TransformOperation::Rotate3D:
TransformationMatrix.cpp 761 TransformationMatrix& TransformationMatrix::rotate3d(double x, double y, double z, double angle) function in class:WebCore::TransformationMatrix
848 TransformationMatrix& TransformationMatrix::rotate3d(double rx, double ry, double rz) function in class:WebCore::TransformationMatrix
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSMatrix.cpp 148 return CSSMatrix::create(TransformationMatrix(m_matrix).rotate3d(rotX, rotY, rotZ));
163 return CSSMatrix::create(TransformationMatrix(m_matrix).rotate3d(x, y, z, angle));

Completed in 71 milliseconds