OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:rotationmatrix
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
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
...]
OverridesView.js
[
all
...]
/packages/apps/Camera2/src/com/android/camera/ui/
ZoomView.java
61
Matrix
rotationMatrix
= new Matrix();
62
rotationMatrix
.setRotate(mOrientation, 0, 0);
63
rotationMatrix
.mapRect(fullResRect);
66
rotationMatrix
.postTranslate(-fullResRect.left, -fullResRect.top);
67
rotationMatrix
.mapRect(fullResRect, new RectF(0, 0, mFullResImageWidth - 1,
86
rotationMatrix
.invert(invertRotation);
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasPathMethods.cpp
234
AffineTransform
rotationMatrix
;
235
rotationMatrix
.rotate(rad2deg(rotation));
237
lineToFloatPoint(path, center +
rotationMatrix
.mapPoint(getPointOnEllipse(radiusX, radiusY, startAngle)));
246
lineToFloatPoint(path, center +
rotationMatrix
.mapPoint(getPointOnEllipse(radiusX, radiusY, angle)));
249
lineToFloatPoint(path, center +
rotationMatrix
.mapPoint(getPointOnEllipse(radiusX, radiusY, angle)));
252
lineToFloatPoint(path, center +
rotationMatrix
.mapPoint(getPointOnEllipse(radiusX, radiusY, endAngle)));
/external/chromium_org/third_party/WebKit/Source/platform/transforms/
TransformationMatrix.cpp
[
all
...]
Completed in 182 milliseconds