A rotation is a circular movement of an object around a center (or point) of rotation.
399
votes
16answers
160k views
Activity restart on rotation Android
In my Android application, when I rotate the device (slide out the keyboard) then my activity is restarted (onCreate is called). Now, this is probably how it's supposed to be, but I do a lot of ...
56
votes
10answers
64k views
How to Rotate a UIImage 90 degrees?
I have a UIImage that is UIImageOrientationUp (portrait) that I would like to rotate counter-clockwise by 90 degrees (to landscape). I don't want to use a CGAffineTransform. I want the pixels of the ...
6
votes
3answers
4k views
How to rotate an image gradually in Swing?
I have an image I am rotating when the user clicks on a button. But it is not working.
I would like to see the image rotating gradually to 90 degrees till it stops but it doesn't. The image must ...
5
votes
2answers
4k views
Strange behavior with android orientation sensor
Currently, I'm trying to rotate 3D Cube using orientation sensor values, using getRotation() method. Some unexpected behaviors are observed when the android device is rotated above some bounds. For ...
2
votes
1answer
1k views
Rotating a shape vertically around the x-axis
I have a 2d graph with an x and y axis and im trying to rotate a shape (series of points) around an axis. This rotation will need to include a scale function.
import java.awt.*;
import ...
29
votes
7answers
21k views
how to create iphone's wobbling icon effect?
I want to wobble an image back and forth in my application similar to how the iPhone icons wobble when you press down on it. What's the best way to do that?
This is my first foray into animations ...
34
votes
9answers
25k views
Calculate Bounding box coordinates from a rotated rectangle, Picture inside
I have the coordinates of the top left Point of a rectangle as well as its width, height and rotation from 0 to 180 and -0 to -180.
I am trying to get the bounding coordinates of the actual box ...
24
votes
4answers
34k views
CSS rotate property in IE
Hallo, I want to rotate the DIV to a certain degree. In FF it functions but in IE I am facing the problem.
For example in the following style I can user rotation=1 to 4
filter: ...
16
votes
6answers
9k views
Screen orientation lock
Is there a reliable way to lock screen orientation on all Android devices? The code below works for my Nexus S and other phones, but for some reason ROTATION_90 corresponds to ...
33
votes
3answers
31k views
CSS3 transform: rotate; in IE9
I have an element that needs to be vertical in a design I have done. I have got the css for this to work in all browsers except IE9. I used the filter for IE7 & IE8:
...
7
votes
2answers
1k views
Interpolating between rotation matrices
I have 2 rotation matrices (lets call them A and B) where:
A = 1 0 0
0 0 -1
0 1 0
and
B = -1 0 0
0 0 -1
0 -1 0
This is basically just a rotation where the camera ...
13
votes
4answers
24k views
Rotating a view in android
Hello i have a button i want to put on a 45 degree angle. For some reason i cant get this to work. Can someone please provide code to accomplish this?
2
votes
2answers
862 views
How do i align this text correctly?
I wrote this polar clock today and i am almost finished exept i want to align my text inside the line similar to this. Does anyone know how to do this? Ive tried to use FontRenderContext and font ...
10
votes
4answers
14k views
How to capture current view screenshot and reuse in code? (iPhone SDK)
I am attemting to transition from one UIView to another, when the user rotates the device. This, in of itself, is not difficult. However, since I am displaying completely different content after the ...
16
votes
5answers
5k views
rotating bitmaps. In code
Is there a faster way to rotate a large bitmap by 90 or 270 degrees than simply doing a nested loop with inverted coordinates?
The bitmaps are 8bpp and typically 2048*2400*8bpp
Currently I do this ...
4
votes
1answer
4k views
Opencv virtually camera rotating/translating for bird's eye view
I've a calibrated camera where I exactly know the intrinsic and extrinsic data. Also the height of the camera is known. Now I want to virtually rotate the camera for getting a Bird's eye view, such ...
15
votes
4answers
9k views
Rotate MapView in Android
I am writing an Android app where one of the features is that the map will rotate according to the compass (i.e. if the phone is pointing east, the map will be oriented so that the east side of the ...
8
votes
4answers
5k views
Rotate cv::Mat using cv::warpAffine offsets destination image
I'm trying to rotate a 1296x968 image by 90 degrees using the C++ API of OpenCV and I'm facing a few problems.
Input:
Rotated:
As you can see, the rotated image has a few problems. First, it has ...
11
votes
5answers
14k views
iOS 6 shouldAutorotate: is NOT being called
I have been scouring the internet for a solution to this but am finding nothing. I am trying to make my iOS 5 app iOS 6 compatible. I cannot get the orientation stuff to work right. I am unable to ...
12
votes
4answers
18k views
UIImageView Gestures (Zoom, Rotate) Question
I would like to make 2 operations to an UIImageView zoom, rotate, I have 2 problems:
A. I make an operation for zoom for ex. and when I try to make rotation the UIImageView is set to initial size, ...
12
votes
4answers
10k views
iOS 6 UITabBarController supported orientation with current UINavigation controller
I have an iPhone app I am updating to iOS 6 that is having rotation issues. I have a UITabBarController with 16 UINavigationCotrollers. Most of the subviews can work in portrait or landscape but some ...
15
votes
11answers
20k views
Single-Stage vs Two-Stage Animation for iPhone Apps?
What are single-state and two-stage animation for rotating an iPhone window?
This is the "error" message I get in the Debugger Console (nothing crashes):
Using two-stage rotation animation. To use ...
9
votes
1answer
8k views
Creating a UIImage from a rotated UIImageView
I have a UIImageView with an image in it. I have rotated the image prior to display by setting the transform property of the UIImageView to CGAffineTransformMakeRotation(angle) where angle is the ...
25
votes
2answers
24k views
Rotate a point by an angle
I want to know how to work out the new co-ordinates for a point when rotated by an angle relative to another point.
I have a block arrow and want to rotate it by an angle theta relative to a point in ...
14
votes
3answers
8k views
UITabBarController Rotation Issues in ios 6
Ack! I had my tabbar rotation issues resolved finally in iOS 5, but iOS 6 and xcode seem to have broken things... here is what I have:
Target App Summary includes: Supported Interface Orientations - ...
5
votes
8answers
6k views
Get element -moz-transform:rotate value in jQuery
I have CSS style for a layer:
.element {
-webkit-transform: rotate(7.5deg);
-moz-transform: rotate(7.5deg);
-ms-transform: rotate(7.5deg);
-o-transform: ...
28
votes
5answers
32k views
Rotating videos with FFmpeg
I have been trying to figure out how to rotate videos with FFmpeg for some time now. I am working with iPhone videos taken in portrait mode. I know how to determine the current degrees of rotation ...
15
votes
3answers
22k views
HTML5 Canvas: How to make a loading spinner by rotating the image in degrees?
I am making a loading spinner with html5 canvas. I have my graphic on the canvas but when i rotate it the image rotates off the canvas. How do I tell it to spin the graphic on its center point?
...
9
votes
1answer
4k views
How To Create a Rotating Wheel Control?
I am trying to implement the Rotatory wheel in android, just like the image displayed below.I came across the tutorial from this link. But i want to implement just as shown in the below image.The ...
9
votes
4answers
9k views
iphone sdk CGAffineTransform getting the angle of rotation of an object
how do i calculate the angle of rotation for any given object (ie a uiimageview)?
8
votes
4answers
11k views
CSS3 rotate alternative?
I am using the CSS3 rule "rotate" to rotate a div containing text. You can see the page here: http://vitaminjdesign.com/v2/socialmedia.html. I am looking for cross-browser support for rotating the ...
16
votes
10answers
14k views
Circular shift operations in C++
Left and right shift operators (<< and >>) are already available in C++.
However, I couldn't find out how I could perform circular shift or rotate operations.
How can operations like "Rotate ...
6
votes
4answers
10k views
Rotate a Java Graphics2D Rectangle?
I have searched everywhere and I just cant find the answer. How do I rotate a Rectangle in java? Here is some of my code:
package net.chrypthic.Space;
import javax.swing.*;
import java.awt.*;
import ...
5
votes
3answers
7k views
Selective Autorotation within a UINavigationController and UITabBarController
Greetings! Here's the scenario.
Starting with a navigation controller (and no tab bar is present - it is hidden from a previous view controller push), I init a new view controller and push it onto ...
3
votes
6answers
18k views
Transform in jQuery
I'm trying to get an element to animate a rotation hover effect using jquery, I have this jsFiddle going to test. So Far I have this:
$(".icon").hover(function() {
...
14
votes
5answers
8k views
Algorithm to rotate an image 90 degrees in place? (No extra memory)
In an embedded C app, I have a large image that I'd like to rotate by 90 degrees. Currently I use the well-known simple algorithm to do this. However, this algorithm requires me to make another copy ...
11
votes
5answers
10k views
willRotateToInterfaceOrientation not being called
I'm returning YES in my view controller's shouldAutorotateToInterfaceOrientation function, and I can see using breakpoints that YES is being returned, however the willRotateToInterfaceOrientation ...
10
votes
2answers
950 views
Affine Transform, Simple Rotation and Scaling or something else entirely?
The scenario goes like this: I have a picture of a paper that I would like to do some OCR. So take the image below as my input example:
After successfully detecting the area that corresponds to the ...
0
votes
2answers
281 views
Rotate Image around character (JAVA)
Yes, i do know you can use AffineTransformation, however i want my sword image to rotate around a character that i have made (black block drawn in graphics) 360 degrees visibly instead of just one ...
0
votes
2answers
974 views
Java 2d rotation in direction mouse point
So far I have a java app where I draw a circle(player) and then draw a green rectangle on top(gun barrel). I have it so when the player moves, the barrel follows with it. I want it to find where the ...
61
votes
3answers
45k views
prevent screen rotation android
I have one of my activities which I would like to prevent from rotating because I'm starting an AsyncTask, and screen rotation makes it restart. So is there any way to tell this activity "DO NOT ...
15
votes
2answers
8k views
How to use onSensorChanged sensor data in combination with OpenGL
I have written a TestSuite to find out how to calculate the rotation angles from the data you get in SensorEventListener.onSensorChanged().
I really hope you can complete my solution to help people ...
11
votes
5answers
8k views
Android camera unexplainable rotation on capture for some devices (not in EXIF)
What I'm doing seems like it should be simple, but I'm still lost after I've read every possible Stackoverflow answer I can find and Googled every article I can find.
I'm using a preview SurfaceView ...
13
votes
3answers
20k views
How can I get log4j to delete old rotating log files?
How can I get log4j to delete old rotating log files? I know I can set up automated jobs (cron for UNIX and scheduled task for Windows), but I want it cross platform, and I want it in our ...
5
votes
3answers
11k views
UITabBarController, MoreNavigationController and the Holy Grail of Device Rotation
UPDATE: See my answer to this question first. This appears to be a bug. A minimal test case has been created and a report has been filed with Apple. (Fixed as of iPhone OS 3.1.)
Here's a puzzler from ...
9
votes
6answers
13k views
Rotate image math (C#)
I have an image with two points, aligned something like this:
|----------------|
| |
| . |
| |
| . |
| |
|----------------|
I ...
5
votes
3answers
4k views
Android Rotating MapView
I am creating an application which trakcs down users path on a mapview. What I want to achieve when user takes a left turn for instance map should rotate it self in such a way that the head of the ...
10
votes
6answers
2k views
R: using rgl to generate 3d rotatable plots that can be viewed in a web browser?
In the world of the R statistics package, rgl allows me to generate 3d plots that I can rotate with my mouse. Is there a way I can export these plots in a portable format, load them in a web browser ...
10
votes
5answers
40k views
Rotate image clockwise or anticlockwise inside a div using javascript
HI, Is there a way by which I can rotate an image inside a div clockwise or anticlockwise.
I have a main fixed width div[overflow set to hidden] with images loaded from database. There is a scroll ...
1
vote
4answers
2k views
How do I prevent clipping when rotating an image in C#?
I just went through a bunch of stuff trying to figure out how to get the image to even rotate. That works but now it's clipping and I'm not really sure how to make it stop... I'm using this ...
