HomeSort by relevance Sort by last modified time
    Searched refs:rotation (Results 26 - 50 of 401) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
Bone.java 183 * Returns the local rotation of the bone, relative to the parent bone.
185 * @return The local rotation of the bone, relative to the parent bone.
210 * Returns the rotation of the bone in model space.
212 * @return The rotation of the bone in model space.
240 * Returns the inverse world bind pose rotation.
245 * @return the inverse world bind pose rotation.
276 * Returns the world bind pose rotation.
281 * @return the world bind pose rotation.
327 //rotation
336 //scale and rotation of parent affect bone position
    [all...]
AnimationFactory.java 41 * you can add some keyFrames for a given time or a given keyFrameIndex, for translation rotation and scale.
58 * step for splitting rotation that have a n ange above PI/2
67 Translation, Rotation, Scale;
71 * Inner Rotation type class to kep track on a rotation Euler angle
73 protected class Rotation {
76 * The rotation Quaternion
78 Quaternion rotation = new Quaternion(); field in class:AnimationFactory.Rotation
80 * This rotation expressed in Euler angles
84 * the index of the parent key frame is this keyFrame is a splitted rotation
    [all...]
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
CompoundCollisionShape.java 80 public void addChildShape(CollisionShape shape, Vector3f location, Matrix3f rotation) {
84 // Transform transA = new Transform(Converter.convert(rotation));
86 // Converter.convert(rotation, transA.basis);
87 children.add(new ChildCollisionShape(location.clone(), rotation.clone(), shape));
88 addChildShape(objectId, shape.getObjectId(), location, rotation);
92 private void addChildShapeDirect(CollisionShape shape, Vector3f location, Matrix3f rotation) {
96 // Transform transA = new Transform(Converter.convert(rotation));
98 // Converter.convert(rotation, transA.basis);
99 addChildShape(objectId, shape.getObjectId(), location, rotation);
132 private native long addChildShape(long objectId, long childId, Vector3f location, Matrix3f rotation);
    [all...]
  /packages/apps/Camera2/src/com/android/camera/ui/
CameraControls.java 63 int rotation = getUnifiedRotation(); local
79 switch (rotation) {
92 center(mShutter, l, t, r, b, orientation, rotation, shutter);
93 center(mBackgroundView, l, t, r, b, orientation, rotation, new Rect());
94 toLeft(mSwitcher, shutter, rotation);
95 toRight(mMenu, shutter, rotation);
96 toRight(mIndicators, shutter, rotation);
99 center(retake, shutter, rotation);
101 toLeft(cancel, shutter, rotation);
103 toRight(done, shutter, rotation);
240 int rotation = getUnifiedRotation(); local
    [all...]
RotatableLayout.java 35 * is a clockwise rotation.
68 // Before the first time this view is attached to window, device rotation
71 // call will track all the subsequent device rotation.
80 // = 0 or 90), we load the layout resource without any rotation.
85 // check if there is any rotation before the view is attached to window
94 int rotation = CameraUtil.getDisplayRotation((Activity) getContext()); local
95 int diff = (rotation - mPrevRotation + 360) % 360;
97 // No rotation
100 // 180-degree rotation
101 mPrevRotation = rotation;
114 int rotation = CameraUtil.getDisplayRotation((Activity) getContext()); local
    [all...]
CameraRootView.java 124 int rotation = CameraUtil.getDisplayRotation((Activity) getContext()); local
126 // adjust rotation for landscape
128 int camOrientation = (rotation % 180 == 0) ? Configuration.ORIENTATION_PORTRAIT
131 rotation = (rotation + 90) % 360;
138 switch (rotation) {
179 // so that they stay in place during rotation
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
GeometryMathUtils.java 34 import com.android.gallery3d.filtershow.filters.FilterRotateRepresentation.Rotation;
49 public Rotation rotation = FilterRotateRepresentation.getNil(); field in class:GeometryMathUtils.GeometryHolder
55 rotation = h.rotation;
62 rotation = FilterRotateRepresentation.getNil();
69 return rotation == FilterRotateRepresentation.getNil() &&
84 return rotation == h.rotation && straighten == h.straighten &&
91 return getClass().getSimpleName() + "[" + "rotation:" + rotation.value(
344 int rotation = holder.rotation.value(); local
376 int rotation = getRotationForOrientation(orientation); local
    [all...]
  /external/qemu/android/skin/
image.c 53 rotate_image( void* data, unsigned width, unsigned height, SkinRotation rotation )
61 switch (rotation & 3)
182 h += desc->rotation*1573;
193 return (a->rotation == b->rotation &&
390 node->desc.path, node->desc.rotation, node->w*node->h );
475 if (desc->rotation == SKIN_ROTATION_0 &&
488 desc0.rotation = SKIN_ROTATION_0;
497 if (desc->rotation == SKIN_ROTATION_90 ||
498 desc->rotation == SKIN_ROTATION_270
    [all...]
trackball.h 39 /* this sets the rotation that will be applied to mouse events sent to the system */
40 extern void skin_trackball_set_rotation( SkinTrackBall* ball, SkinRotation rotation);
window.h 44 SkinRotation rotation,
63 SkinRotation rotation; member in struct:__anon26538
  /external/chromium_org/media/base/android/java/src/org/chromium/media/
VideoCapture.java 310 int rotation = getDeviceOrientation(); local
311 if (rotation != mDeviceOrientation) {
312 mDeviceOrientation = rotation;
321 rotation = (mCameraOrientation + rotation) % 360;
322 rotation = (360 - rotation) % 360;
323 flipHorizontal = (rotation == 270 || rotation == 90);
326 rotation = (mCameraOrientation - rotation + 360) % 360
    [all...]
  /frameworks/base/services/java/com/android/server/display/
DisplayDeviceInfo.java 37 * rotation of its associated logical display.
103 * This value is not affected by display rotation.
109 * This value is not affected by display rotation.
149 * The additional rotation to apply to all content presented on the display device
157 public int rotation = Surface.ROTATION_0; field in class:DisplayDeviceInfo
211 && rotation == other.rotation
233 rotation = other.rotation;
250 sb.append(", rotation ").append(rotation)
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/decoder/
GpuVideoTrackDecoder.java 138 protected void copyFrameDataTo(FrameImage2D outputVideoFrame, int rotation) {
148 if (rotation != 0) {
149 float[] targetCoords = getRotationCoords(rotation);
151 if (needSwapDimension(rotation)) {
190 * Get the quad coords for rotation.
191 * @param rotation applied to the frame, value is one of
193 * @return coords the calculated quad coords for the given rotation
195 private static float[] getRotationCoords(int rotation) {
196 switch(rotation) {
206 throw new IllegalArgumentException("Unsupported rotation angle.")
    [all...]
  /external/chromium_org/ash/display/
display_info.h 45 // (5%), and one rotation property where 'r' is 90 degree clock-wise
53 // no rotation. 1.0 ui scale.
56 // no overscan, no rotation. 1.0 ui scale.
83 void set_rotation(gfx::Display::Rotation rotation) { rotation_ = rotation; }
84 gfx::Display::Rotation rotation() const { return rotation_; } function in class:ash::internal::DisplayInfo
117 // and rotation settings.
146 gfx::Display::Rotation rotation_
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/gadget/
WidgetUtils.java 57 public static Bitmap createWidgetBitmap(Bitmap bitmap, int rotation) {
62 if (((rotation / 90) & 1) == 0) {
74 canvas.rotate(rotation);
  /external/qemu/android/
opengles.h 46 int android_showOpenglesWindow(void* window, int x, int y, int width, int height, float rotation);
framebuffer.c 79 int rotation,
84 rotation &= 3;
194 qframebuffer_rotate( QFrameBuffer* qfbuff, int rotation )
198 if ((rotation ^ qfbuff->rotation) & 1) {
199 /* swap width and height if new rotation requires it */
209 qfbuff->rotation = rotation;
212 extra->fb_rotate( extra->fb_opaque, rotation );
  /hardware/samsung_slsi/exynos5/include/
exynos_rotator.h 149 * Set rotation.
156 * \param rotation
157 * image rotation. It should be multiple of 90[in]
164 int rotation);
  /external/jmonkeyengine/engine/src/core/com/jme3/input/
ChaseCamera.java 62 protected float rotation = 0; field in class:ChaseCamera
75 protected float targetRotation = rotation;
232 * Sets custom triggers for toggleing the rotation of the cam
271 pos.set(hDistance * FastMath.cos(rotation), (distance) * FastMath.sin(vRotation), hDistance * FastMath.sin(rotation));
343 //if target was moving, we compute a slight offset in rotation to avoid a rought stop of the cam
346 if (targetRotation - rotation > trailingRotationInertia) {
347 targetRotation = rotation + trailingRotationInertia;
348 } else if (targetRotation - rotation < -trailingRotationInertia) {
349 targetRotation = rotation - trailingRotationInertia;
    [all...]
  /external/chromium_org/webkit/common/cursors/
webcursor_aurax11.cc 39 if (rotation_ == display.rotation() &&
44 rotation_ = display.rotation();
  /frameworks/base/core/java/android/view/
DisplayList.java 430 * Sets the rotation value for the display list around the Z axis
432 * @param rotation The rotation value of the display list, in degrees
437 public abstract void setRotation(float rotation);
440 * Returns the rotation value for this display list around the Z axis, in degrees.
447 * Sets the rotation value for the display list around the X axis
449 * @param rotationX The rotation value of the display list, in degrees
457 * Returns the rotation value for this display list around the X axis, in degrees.
464 * Sets the rotation value for the display list around the Y axis
466 * @param rotationY The rotation value of the display list, in degree
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/system_display/
display_info_provider_chromeos.cc 33 // Checks if the given integer value is valid display rotation in degrees.
34 bool IsValidRotationValue(int rotation) {
35 return rotation == 0 || rotation == 90 || rotation == 180 || rotation == 270;
38 // Converts Rotation enum to integer.
39 int RotationToDegrees(gfx::Display::Rotation rotation) {
40 switch (rotation) {
    [all...]
  /frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/
Rectangle.java 45 public static Rectangle fromRotatedRect(Point center, Point size, float rotation) {
50 return new Rectangle(p0.rotatedAround(center, rotation),
51 p1.rotatedAround(center, rotation),
52 p2.rotatedAround(center, rotation),
53 p3.rotatedAround(center, rotation));
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
FilterRotateRepresentation.java 30 public static final String SERIALIZATION_NAME = "ROTATION";
34 Rotation mRotation;
36 public enum Rotation {
40 private Rotation(int value) {
48 public static Rotation fromValue(int value) {
64 public FilterRotateRepresentation(Rotation rotation) {
73 setRotation(rotation);
85 public Rotation getRotation() {
92 mRotation = Rotation.NINETY
    [all...]
  /frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
TiledImageView.java 66 public int rotation; field in class:TiledImageView.ImageRendererWrapper
161 mRenderer.rotation = source != null ? source.getRotation() : 0;
250 final int rotation = mRenderer.source.getRotation(); local
251 final boolean swap = !(rotation % 180 == 0);
264 if (rotation == 90 || rotation == 180) {
269 if (rotation == 180 || rotation == 270) {
289 mRenderer.image.setModel(mRenderer.source, mRenderer.rotation);
304 mRenderer.image.setModel(mRenderer.source, mRenderer.rotation);
    [all...]

Completed in 1040 milliseconds

12 3 4 5 6 7 8 91011>>