OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:rotatedRect
(Results
1 - 4
of
4
) sorted by null
/packages/apps/Messaging/src/com/android/messaging/ui/
OrientedBitmapDrawable.java
90
final RectF
rotatedRect
= new RectF(mDstRect);
91
matrix.mapRect(
rotatedRect
);
92
mDstRect.set((int)
rotatedRect
.left, (int)
rotatedRect
.top, (int)
rotatedRect
.right,
93
(int)
rotatedRect
.bottom);
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropMath.java
155
* @param
rotatedRect
corners of a rotated rectangle
159
public static boolean pointInRotatedRect(float[] point, float[]
rotatedRect
, float[] center) {
161
float angle = getUnrotated(
rotatedRect
, center, unrotated);
248
private static float getUnrotated(float[]
rotatedRect
, float[] center, RectF unrotated) {
249
float dy =
rotatedRect
[1] -
rotatedRect
[3];
250
float dx =
rotatedRect
[0] -
rotatedRect
[2];
254
float[] unrotatedRect = new float[
rotatedRect
.length];
255
m.mapPoints(unrotatedRect,
rotatedRect
);
[
all
...]
/external/opencv3/modules/imgproc/test/
test_lsd.cpp
90
RotatedRect
rRect =
RotatedRect
(center, rect_size, angle);
148
TEST_F(Imgproc_LSD_ADV,
rotatedRect
)
201
TEST_F(Imgproc_LSD_STD,
rotatedRect
)
254
TEST_F(Imgproc_LSD_NONE,
rotatedRect
)
/packages/apps/Camera2/src/com/android/camera/
TextureViewHelper.java
279
RectF
rotatedRect
= new RectF(normalRect.width() / 2 - normalRect.height() / 2,
293
transform.setRectToRect(
rotatedRect
, desiredBounds, Matrix.ScaleToFit.FILL);
301
transform.setRectToRect(
rotatedRect
, desiredBounds, Matrix.ScaleToFit.FILL);
Completed in 538 milliseconds