A rotation is a circular movement of an object around a center (or point) of rotation.

learn more… | top users | synonyms (2)

0
votes
2answers
60 views

How to properly move the camera in the direction it's facing

I'm trying to figure out how to make the camera in directx move based on the direction it's facing. Right now the way I move the camera is by passing the camera's current position and rotation to a ...
0
votes
1answer
26 views

XNA 4.0 - Rotate around own axis and around world centre

I have planets rotating around Sun. Sun is in the middle. I want to make planets rotate around both the sun and their own axis. My rotation code is: world_.SetValue(Matrix.CreateRotationZ(-(float) ...
3
votes
1answer
74 views

Correct spatial camera orientation

I'm performing a camera calibration as described in OpenCV calibration sample (which works fine for lens correction). Additionally I now want to do a spatial correction. Means when the camera is not ...
0
votes
1answer
48 views

rotating body and attached sprite in box2d

I have a question that is killing me... I'm using LevelHelper to make a level in Box2d. So I have a triangular sprite attached to a triangular body. Now the problem is that I want to rotate that ...
1
vote
4answers
272 views

Make div rotatable in every browser

First i have seen Rotating a Div Element in jQuery but it didnt give me the solution i wished. I have a div with draggable divs in it. so 1 main div (bord) with divs in it(class sleep) in the divs ...
0
votes
0answers
60 views

Android Animation - applytransformation - Do a camera translate on Z axes for half the time

I was trying to make a rotational cube using translations and rotations. I'm using a classe named Rotate3dAnimation.java provided in the Google samples. The rotation is working pretty well and i was ...
0
votes
1answer
34 views

rotating around point turns into spiral

I am engineering some program that simulates a steel wire rope for my bachelor thesis. But while trying to make a point (centre of a strand (midden) rotating about the centre of the ...
0
votes
1answer
13 views

jQuery rotate does not work in safari

I had a problem with the jQuery rotate plug-in in Safari 5.x. It seemed to work, no js errors were thrown, all the DOM elements had the styles that should have been applied after jQuery rotate work, ...
0
votes
0answers
27 views

Object rotates with lookAt

i have 2 cubes in my scene var cubeGeometry = new THREE.CubeGeometry( 50, 50, 50 ); cubeMaterial = new THREE.MeshLambertMaterial( { color: 0x000088, transparent: true, opacity: 0.5} ); cube = ...
-1
votes
0answers
44 views

How to use different images in OpenGl Android? [closed]

I want to develop an App in Android for Car Models. I am new to Android. I want to show different views of a Car in 3D way. For that I have different images of a car. I am using OpenGl for this. But ...
0
votes
0answers
38 views

Java/Lwjgl 2D rotated rectangle collision response

I've been working on this project for quite some time, and I'm running into issues with the execution of the code, or perhaps the physics. I could really use some help, as this is for my high school ...
0
votes
1answer
27 views

Wind direction image on Bing Map

I wish to overlay a Bing map with a series of arrows representing the wind direction. I have searched unsuccessfully for anything relating to rotating "pins". I hoped to use a custom image and rotate ...
1
vote
1answer
41 views

Rotate UIView without deformation

I'm rotating a UIView based on the accelerometer data, and it works fine except that the UIView is deformed. I'm not sure how to fix the issue. Here's the code in my didAccelerate method: float ...
0
votes
2answers
108 views

How to rotate video on rotate of device in Android?

I am working on a project where I am showing a live streaming video in android. I am showing the video in video view. I want to provide facility of landscape and portrait video view to the user. If I ...
0
votes
0answers
68 views

Coding of rotational & cylindrical warping for panoramas

My question is regarding code implementation of rotational & cylindrical warping of panoramas. I'm using OpenCV 2.4.0 in C++. After going through some presentations, my understanding is that an ...
0
votes
1answer
37 views

App running slow after loading viewcontroller, then unload about 15-20 times

Using: Xcode 4.6 Storyboards ARC Model segue to SecondViewController I have an app that has the main ViewController that loads a new veiwController when the device is rotated to the right. When the ...
0
votes
1answer
81 views

jQuery continous back and forth rotation animation

I need some help with this. I made a nice web kit animation for one of the elements on my site. It is supposed to rotate 7 degrees back and forth continuously. Unfortunately it works only in Chrome. ...
1
vote
0answers
39 views

How to lookup screen-bounded tile indices in a rotated tilemap?

Normally, an Axis-aligned (rotation = 0) tilemap is easy to iterate through the visible tiles on the screen. But how do you "cull" or filter the tile indexes when the entire tilemap is rotated? ...
4
votes
1answer
125 views

Quaternion base transformation

i have a Quaternion, based on a coordinate system where the Y axis is up, the X axis is to the right and the Z axis looks towards me. Now i want to move a character in another application(C++) based ...
-1
votes
1answer
49 views

Rotating image so that it faces another image

I am creating a game and want the enemy to face the player as it follows the player. I have tried to use AffineTransform in this way: at = new AffineTransform(); angle = Math.atan2(player.getY() - ...
0
votes
0answers
48 views

Swiping from rotated middle fragment shows only black screen

I have a ViewPager with three fragments. The problem is that on the start, I'd like to have second fragment as default, so I set setCurrentItem(1) As I don't want the fragments to be newly created ...
0
votes
2answers
91 views

Java: rotating image so that it points at the mouse cursor

I want the player image to point towards the mouse cursor. I use this code to get the postion of the mouse cursor: private int cursorX = MouseInfo.getPointerInfo().getLocation().x; private int ...
1
vote
2answers
120 views

Force Landscape iOS 6

I am looking to have one view in my app have landscape orientation. I have managed to get the view to stay in landscape when rotated manually, but if the device is already portrait, it stays portrait, ...
0
votes
0answers
23 views

Create rotated horizontal nav bar

I dont know how to call it. HTML that I am trying: <style> #nav { width:40px; position:fixed; top:0; left:0; bottom:0; ...
0
votes
1answer
118 views

jQuery rotate cube when the button is clicked

Why doesn't button make cube rotate? I am adding +=45deg to it! Here's the code: jQuery: $(document).ready(function(){ $('button').click(function(){ ...
1
vote
1answer
75 views

iOS Stretching View using Auto Layout in Landscape

I just started using Auto Layout for my upcoming projects. I created an UIImageView inside a UIScrollView like shown in the image below: Auto Layout works as expected and positions the UImageView ...
0
votes
1answer
99 views

OpenGl es 2.0 2D plane rotation

I have been working on getting some quads with textures to display properly using OpenGL es 2.0 on iPhone platform. I started off following the tutorial here ...
0
votes
0answers
41 views

Image display rotated taken from camre with orientation protrait

My question is when I select an image from gallery some of image displays rotated in imageview.I want to display it as it is in gallery.And the problem why image is rotated is because that image is ...
0
votes
2answers
102 views

CGAffineTransform rotation and resize on slider value

I am using Slider to Resize and Rotate- For the Rotate - CGAffineTransform transform = editingView.transform; transform = CGAffineTransformMakeRotation(sliderVal * 2*M_PI / 30); ...
1
vote
3answers
53 views

Rotation of a rect using a matrix

I want to rotate a rect, like on the provided sketch. I want to get out the new x-Pos and y-Pos of the north-western edge. I tried it with this calculation, but it does not work: var x = //current ...
1
vote
2answers
40 views

Can i switch X Y Z in a quaternion?

i have a coordinate system where the Y axis is UP. I need to convert it to a coordinate system where Z is UP. I have the rotations stored in quaternions, so my question is : if i have a quaternion ...
0
votes
1answer
121 views

Rotate object by 360 degrees with different Images in Android?

I am creating an Android App to rotate an image of Car by 360 degrees. I want to rotate the object with different image files of same object (eg Car) Here is the Example that I want to implement in ...
0
votes
0answers
54 views

UILabel rotationGesture programmatically

I have a UILabel which is created programmatically. I'm able to rotate it after going through a few tutorials using UIRotationGestureRecognizer, but the problem is, When I re-size the font size using ...
1
vote
1answer
38 views

How are quaternion rotations supposed to behave?

I've been slowly figuring out quaternions over the past few days and have run into an unexpected issue. after finally getting the code to work I found that the number I pass to my rotate function is ...
-1
votes
2answers
57 views

Scaling of a rotated element

Let's suppose I have an element that I want to rotate and scale in a visual designer: A user should be able to drag the edges and the graphics should scale appropriately. The rotation is entered in ...
0
votes
1answer
56 views

Rotate the player in XNA

I've been looking around for a tutorial on how to do this properly and Google keeps coming up empty. Maybe this is a really simple subject, but I'm not sure what to do. What I've found so far gives ...
0
votes
0answers
28 views

Rotating UIImage causing some iPhones to crash

On my app, I build a PDF. I add an image to the PDF file. When I use UIImagePickerController and select a portrait photo, it automatically rotates it 90 degrees to the left. So, in order to fix ...
0
votes
0answers
57 views

Convert rotation matrix to be used in a different coordinate system

I have a rotation matrix from the Orocos Kinematics Library (KDL) and have to apply it in the coordinate system of the Vizard simulator. What I do need is a converted KDL rotation matrix to apply it ...
0
votes
0answers
61 views

SlidingDrawer on Android 2.3.5 not showing from left after rotation

I have this sliding drawer and I'm using rotation to make it slide from left. It works great on OS version 4.x. Drawer thumb shows on left and drawer slides in from left to right. On my HTC Desire HD ...
0
votes
0answers
30 views

IPAD UIInterface Portrait and Landscape Orientation

System: XCODE 4.5, Deployment: IPad 5.0 and 6.0 I have two UIViewControllers that need to work on both Landscape and Portrait Modes. I used CGRECTMake to customize the position of UIControllers. This ...
0
votes
0answers
105 views

iOS - Help rotating an image (an asteroid ship image)

I am creating an asteroids clone for iOS. I have create a ship class and I am trying to rotate the ship itself. I've been able to do rotations in openGL, XNA, C#, etc. without any problems. I've read ...
0
votes
1answer
63 views

Android Sensor Rotation Angle

I'm trying to detect the y-axis rotation angle (forward-backward tilt when holding in landscape) but I'm obviously doing thins wrong as the onSensorChanged event never gets triggered @Override public ...
0
votes
0answers
115 views

Delphi Firemonkey 3D: How can I change the origin from which a 3D object rotates?

The cube rotates when the user holds down the LMB and moves the mouse.I am using a dummy as a kind of "anchor", so that the camera stays in the same place, but the object rotates, so all sides can be ...
0
votes
1answer
82 views

Why does moving AND rotating a NSView change its rotation center to the frame's origin?

I rotate a NSView around its center and verified the result: [_cocoaView setFrameCenterRotation:-_rotationX]; I position the NSView by changing the frame origin so that the view is aligned with ...
1
vote
0answers
49 views

Flex:- After rotation from center how fit image in a container box (Scale or resize according to container box)

I am developing a flex application. In which I have a to rotate image from center in its container box. There is another container box(Named tool) is attached to the image, that contains some ...
0
votes
1answer
49 views

RotateFunction has diffrent behaviours

I wrote function of class Card, which should rotate Card in time around its Y-axis. public IEnumerator RotateCard(float angle) { if(rotating) yield break; rotating = true; ...
0
votes
2answers
59 views

Xna 4.0 3D Cameras & Models, rotation does not work right

Hi I am getting a headache with cameras and models rotation. the camera seems to be working but the rotation on the model just seems to be messed up. What i want is the model to turn a little bit in ...
1
vote
2answers
56 views

How to Calculate Collision of rotated Rectangle

I try to calculate the collision of the edges of an rotated Rectangle. Here is an example on jsFiddle : http://jsfiddle.net/XgHxx/ Something like this: if( mask.x < img.x * rotate_Factor ) ...
0
votes
0answers
21 views

how to rotate a 3d point

this may be a silly question. but I just want to make sure. Given a 3d point p (x,y,z), and the rotation matrix R. what is the coordinate of p after rotation R? is it R*P? I did an experiment and ...
0
votes
1answer
17 views

Microsoft PixelSense ScatterviewItem Rotate event

As the ScatterView offers built-in rotation, resize and movement actions it is quite handy for standard manipulations of Shapes. In order to provide a redo/undo I'd like to save the shape's settings ...

1 2 3 4 5 78