HomeSort by relevance Sort by last modified time
    Searched full:rotationmatrix (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
Geometry.js 86 * @param {!CSSMatrix} rotationMatrix
89 WebInspector.Geometry.EulerAngles.fromRotationMatrix = function(rotationMatrix)
91 var beta = Math.atan2(rotationMatrix.m23, rotationMatrix.m33);
92 var gamma = Math.atan2(-rotationMatrix.m13, Math.sqrt(rotationMatrix.m11 * rotationMatrix.m11 + rotationMatrix.m12 * rotationMatrix.m12));
93 var alpha = Math.atan2(rotationMatrix.m12, rotationMatrix.m11)
    [all...]
  /packages/apps/Camera2/src/com/android/camera/ui/
ZoomView.java 83 Matrix rotationMatrix = new Matrix();
84 rotationMatrix.setRotate(mOrientation, 0, 0);
85 rotationMatrix.mapRect(fullResRect);
88 rotationMatrix.postTranslate(-fullResRect.left, -fullResRect.top);
89 rotationMatrix.mapRect(fullResRect, new RectF(0, 0, imageSize.x - 1,
108 rotationMatrix.invert(invertRotation);
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasPathMethods.cpp 232 AffineTransform rotationMatrix;
233 rotationMatrix.rotateRadians(rotation);
235 lineToFloatPoint(path, center + rotationMatrix.mapPoint(getPointOnEllipse(radiusX, radiusY, startAngle)));
243 lineToFloatPoint(path, center + rotationMatrix.mapPoint(getPointOnEllipse(radiusX, radiusY, angle)));
246 lineToFloatPoint(path, center + rotationMatrix.mapPoint(getPointOnEllipse(radiusX, radiusY, angle)));
249 lineToFloatPoint(path, center + rotationMatrix.mapPoint(getPointOnEllipse(radiusX, radiusY, endAngle)));
  /external/deqp/framework/common/
tcuMatrixUtil.hpp 37 Matrix<float, 2, 2> rotationMatrix (float radians);
57 inline Matrix<float, 2, 2> rotationMatrix (float radians)
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
OverridesView.js 576 var rotationMatrix = matrix.rotateAxisAngle(axis.x, axis.y, axis.z, angle);
577 this._currentMatrix = rotationMatrix.multiply(this._boxMatrix)
  /packages/apps/Camera2/src/com/android/camera/
CaptureModule.java 771 Matrix rotationMatrix = new Matrix();
772 rotationMatrix.setRotate(mDisplayRotation, 0.5f, 0.5f);
773 rotationMatrix.mapPoints(points);
    [all...]
  /external/deqp/modules/gles2/accuracy/
es2aTextureMipmapTests.cpp 226 tcu::Mat2 rotMatrix = tcu::rotationMatrix(angle);
  /external/deqp/modules/gles3/accuracy/
es3aTextureMipmapTests.cpp 218 tcu::Mat2 rotMatrix = tcu::rotationMatrix(angle);
  /external/chromium_org/third_party/WebKit/Source/platform/transforms/
TransformationMatrix.cpp     [all...]
  /external/deqp/modules/gles2/functional/
es2fTextureMipmapTests.cpp 230 tcu::Mat2 rotMatrix = tcu::rotationMatrix(angle);
    [all...]
  /external/deqp/modules/gles3/functional/
es3fTextureMipmapTests.cpp 276 tcu::Mat2 rotMatrix = tcu::rotationMatrix(angle);
    [all...]

Completed in 1589 milliseconds