Home | History | Annotate | Download | only in media

Lines Matching defs:bottomRight

94             final Vector3f bottomRight = pool.create();
109 camera.convertToCameraSpace(camera.mWidth, camera.mHeight, 0, bottomRight);
112 if ((bottomRight.x - topLeft.x) > (imgBottomRight.x - imgTopLeft.x)) {
113 final float hCenterExtent= (bottomRight.x + topLeft.x)/2 -
118 float rightExtent = bottomRight.x - imgBottomRight.x;
128 if ((bottomRight.y - topLeft.y) > (imgBottomRight.y - imgTopLeft.y)) {
129 final float vCenterExtent= (bottomRight.y + topLeft.y)/2 -
134 float bottomExtent = bottomRight.y - imgBottomRight.y;
147 pool.delete(bottomRight);
262 final Vector3f bottomRight = pool.create();
266 camera.convertToCameraSpace(camera.mWidth, camera.mHeight, 0, bottomRight);
267 float xExtent = Math.abs(topLeft.x - bottomRight.x) / currentFocusItemWidth;
268 float yExtent = Math.abs(topLeft.y - bottomRight.y) / currentFocusItemHeight;
272 pool.delete(bottomRight);