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

  /cts/tests/tests/location/src/android/location/cts/psedorange/
Ecef2EnuConverter.java 49 RealMatrix rotationMatrix = getRotationMatrix(refLat, refLng);
52 RealMatrix enuResult = rotationMatrix.multiply(ecefCoordinates);
74 RealMatrix rotationMatrix = new Array2DRowRealMatrix(3, 3);
77 rotationMatrix.setEntry(0, 0, -1 * Math.sin(refLng));
78 rotationMatrix.setEntry(1, 0, -1 * Math.cos(refLng) * Math.sin(refLat));
79 rotationMatrix.setEntry(2, 0, Math.cos(refLng) * Math.cos(refLat));
80 rotationMatrix.setEntry(0, 1, Math.cos(refLng));
81 rotationMatrix.setEntry(1, 1, -1 * Math.sin(refLat) * Math.sin(refLng));
82 rotationMatrix.setEntry(2, 1, Math.cos(refLat) * Math.sin(refLng));
83 rotationMatrix.setEntry(0, 2, 0)
    [all...]
EcefToTopocentricConverter.java 46 RealMatrix rotationMatrix =
50 rotationMatrix.transpose().getData(), inputVectorMeters);
UserPositionVelocityWeightedLeastSquare.java 358 RealMatrix rotationMatrix = new Array2DRowRealMatrix(4, 4);
361 rotationMatrix.setSubMatrix(
364 rotationMatrix.setEntry(3, 3, 1);
367 velocityH = rotationMatrix.multiply(velocityH).multiply(rotationMatrix.transpose());
368 positionH = rotationMatrix.multiply(positionH).multiply(rotationMatrix.transpose());
    [all...]
  /external/webrtc/talk/app/webrtc/java/android/org/webrtc/
RendererCommon.java 163 final float[] rotationMatrix = new float[16];
164 Matrix.setRotateM(rotationMatrix, 0, rotationDegree, 0, 0, 1);
165 adjustOrigin(rotationMatrix);
166 return multiplyMatrices(textureMatrix, rotationMatrix);
  /frameworks/support/core/ktx/src/main/java/androidx/core/graphics/
Matrix.kt 50 fun rotationMatrix(degrees: Float, px: Float = 0.0f, py: Float = 0.0f) =
  /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/deqp/framework/common/
tcuMatrixUtil.hpp 40 Matrix<float, 2, 2> rotationMatrix (float radians);
70 inline Matrix<float, 2, 2> rotationMatrix (float radians)
  /frameworks/support/core/ktx/src/androidTest/java/androidx/core/graphics/
MatrixTest.kt 44 @Test fun rotationMatrix() {
45 val r = rotationMatrix(90.0f, 2.0f, 3.0f).values()
  /packages/apps/Camera2/src/com/android/camera/captureintent/state/
StateReadyForCapture.java 369 Matrix rotationMatrix = new Matrix();
370 rotationMatrix.setRotate(rotationDegree, 0.5f, 0.5f);
371 rotationMatrix.mapPoints(points);
  /packages/apps/Camera2/src/com/android/camera/
CaptureModule.java     [all...]
  /external/deqp/modules/gles2/accuracy/
es2aTextureMipmapTests.cpp 228 tcu::Mat2 rotMatrix = tcu::rotationMatrix(angle);
  /external/deqp/modules/gles3/accuracy/
es3aTextureMipmapTests.cpp 219 tcu::Mat2 rotMatrix = tcu::rotationMatrix(angle);
  /external/deqp/modules/gles2/functional/
es2fTextureMipmapTests.cpp 231 tcu::Mat2 rotMatrix = tcu::rotationMatrix(angle);
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/texture/
vktTextureMipmapTests.cpp 242 const tcu::Mat2 rotMatrix = tcu::rotationMatrix(angle);
    [all...]
  /external/deqp/modules/gles3/functional/
es3fTextureMipmapTests.cpp 275 tcu::Mat2 rotMatrix = tcu::rotationMatrix(angle);
    [all...]

Completed in 434 milliseconds