Searched defs:rotY (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSMatrix.cpp132 PassRefPtr<CSSMatrix> CSSMatrix::rotate(double rotX, double rotY, double rotZ) const argument
137 if (std::isnan(rotY) && std::isnan(rotZ)) {
140 rotY = 0;
143 if (std::isnan(rotY))
144 rotY = 0;
147 return CSSMatrix::create(TransformationMatrix(m_matrix).rotate3d(rotX, rotY, rotZ));

Completed in 74 milliseconds