Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

172
votes
8answers
81k 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 ...
24
votes
4answers
1k views

Fast tensor rotation with NumPy

At the heart of an application (written in Python and using NumPy) I need to rotate a 4th order tensor. Actually, I need to rotate a lot of tensors many times and this is my bottleneck. My naive ...
21
votes
6answers
30k 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 ...
20
votes
10answers
9k views

Tetris Piece Rotation Algorithm

What are the best algorithms (and explanations) for representing and rotating the pieces of a tetris game? I always find the piece rotation and representation schemes confusing. Most tetris games ...
16
votes
6answers
12k 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 ...
14
votes
9answers
16k 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 ...
13
votes
7answers
353 views

Is there a circular hash function?

Thinking about this question on testing string rotation, I wondered: Is there was such thing as a circular/cyclic hash function? E.g. h(abcdef) = h(bcdefa) = h(cdefab) etc Uses for this include ...
13
votes
9answers
14k 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 ...
11
votes
7answers
354 views

Efficient algorithm for counting unique states of tic tac toe

I'm trying to build a tic tac toe game to demonstrate and experiment with machine learning algorithms, and i've found an interesting problem. eg: a tic tac toe board can be mirrored, but for a ...
10
votes
2answers
741 views

Point in Tilt Direction - iPhone

In my cocos2d game, I have my player sprite and I want to have him move in the direction I tilt my iPhone. I can deal with that, the hardest bit which I can't work out is: How do I make my sprite ...
10
votes
1answer
6k 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: ...
10
votes
4answers
3k 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 ...
10
votes
3answers
16k views

How can I display one UIView in landscape?

I've looked at every question so far and none seem to actually answer this question. I created a UITabBarController and added several view controllers to it. Most of the views are viewed in ...
9
votes
2answers
142 views

Is there a tree structure or algorithm to shuffle around levels in a tree?

I have what I think is an interesting problem. Basically, I have a list of Items, where each Item has a fixed set of meta-data, of different values. For example: Item 1: {Type = "Text", Author = ...
8
votes
2answers
71 views

How to rotate sub-views around their own centres?

Is it possible to rotate a view around its own centre? In my present implementation the sub-views (buttons, etc) seem to move along a funny path before they end up in the desired positions (since the ...
8
votes
1answer
126 views

How to gradually rotate an object to face another turning the shortest distance

I'm currently trying to rotate a sprite depending on how many degrees(or rads, I prefer degrees) it differs from facing straight towards a target, the problem is when the target reaches a certain ...
8
votes
3answers
385 views

EditText doubling out on rotate

I'm having an issue with an EditText control. This issue is only happening on this particular Activity and no other Activities with EditTexts. I have removed all setText calls for this EditText and ...
8
votes
1answer
1k views

Rotate image on center using one finger touch

I want to rotate the below image on a center point using one finger touch... And i want to display the value of the image with the label when I rotate the image using touch. I have done the image ...
8
votes
2answers
5k views

hiding TabBar when rotating iPhone device to landscape

So here is what i have: A UITabBarController that handles different UIViewControllers. In one of the UIViewController i am trying to switch the view being displayed when the device rotates to ...
8
votes
5answers
8k 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 ...
8
votes
4answers
21k views

OpenGL rotating a camera around a point

In OpenGL I'm trying to rotate a camera around a point, with camera being distance r from the point and facing the point when it rotates. In other words, I want the camera to move along the ...
7
votes
2answers
137 views

Rotating Three20 TTPhotoViewController inside TabBarController

Adding Three20 TTPhotoViewController on an empty UIWindow Rotation were working like a charm. But when I moved the TTPhotoViewController to be created from UINavigationController inside a ...
7
votes
5answers
530 views

How do I force a specific UIInterfaceOrientation on an individual view in a UINavigationController?

Okay, so here's the situation: I have an app in which I only want ONE specific view in a UINavigationController to have a landscape orientation. This view is a UIImageView that I'm capturing a ...
7
votes
3answers
751 views

C++ / openGL: Rotating a QUAD toward a point using quaternions (updated)

When I have a QUAD at a certain position, how can I rotate it in such a way that its normal points toward a given point? Imagine the colored blocks are just rectangular quads, then this image shows a ...
7
votes
5answers
4k views

Calculate rotations to look at a 3D point?

I need to calculate the 2 angles (yaw and pitch) for a 3D object to face an arbitrary 3D point. These rotations are known as "Euler" rotations simply because after the first rotation, (lets say Z, ...
7
votes
6answers
6k views

UINavigationController and autorotation

I have a UIViewController that returns YES in shouldAutorotateToInterfaceOrientation: for UIDeviceOrientationPortrait and NO for everything else. With that view on the top of the stack, I use ...
7
votes
3answers
2k views

How can I rotate and compress Log4perl log files?

From what I can tell neither Log4Perl or any of its related modules in CPAN supports rotate & compression of log files. Rotation can be accomplished by using: Log::Log4perl::Appender::File ...
6
votes
1answer
115 views

How do you combine X, Y, and Z rotations in a model's local space (not global)?

I am starting out on Molehill and am having a lot of problems grasping Matrix3D. My first problem is how to manage a Matrix3D that describes a single model's orientation. I use ...
6
votes
3answers
215 views

Rotate rectangle points individualy distort the rectangle

I'm trying to rotate a rectangle by rotating its points , using this code var dx,dy:real; rotp:Tpoint; begin dx := (CenterPoint.Y * Sin(angle)) - (CenterPoint.X * Cos(angle)) + CenterPoint.X; ...
6
votes
1answer
822 views

iOS5 breaks UISplitViewController rotation callbacks, how to invoke manually?

As has been reported in other questions here on SO, iOS 5 changes how rotation callbacks for split view controllers are sent as per this release note. This is not a dupe (I think), as I can't find ...
6
votes
5answers
2k 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 ...
6
votes
1answer
720 views

Recompose Activity layout to play video in fullscreen when screen is rotated

In an Activity I have embedded a Video widget (VideoView or MediaPlayer associated to a SurfaceView) which size should be adapted when the screen is rotated. This Activity is used as content in a ...
6
votes
5answers
8k 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 ...
6
votes
3answers
3k views

3D rotation with Axis & Angle

I know 3D rotation is well documented on SO and many other sites, but despite reading countless explanations I still haven't figured out where I'm going wrong. My background is in art and design, not ...
6
votes
1answer
593 views

How to load different XIBs for different device orientations for same viewcontroller?

The documentation says that if I want to support both portrait and landscape, I basically have two ways of doing that: Set up the viewcontroller's view so that the subviews autoresize correctly and ...
6
votes
2answers
3k views

how to do 3D rotation around center in AS3 using matrix3D?

I am trying to rotate a Sprite in three dimensions around its centerpoint, and I am struggling to understand some of the behavior of matrix3D. Ive overridden the set rotationX, rotationY, and ...
5
votes
1answer
70 views

How to rotate an object in XYZ axes on DirectX?

I tried this code: D3DXMatrixRotationX(&matRotate, rx); D3DXMatrixRotationY(&matRotate, ry); D3DXMatrixRotationZ(&matRotate, rz); d3ddev->SetTransform(D3DTS_WORLD, &matRotate); ...
5
votes
1answer
154 views

Rotation of Object Unity rotating at wrong value

My problem is I want to be able to rotate a cylinder 9 times. 360/9 is 40 so I all I should need to do is rotate by 40 degrees 9 times. This doesn’t work however as when I rotate the cylinder for the ...
5
votes
2answers
182 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 ...
5
votes
1answer
80 views

object rotation is not proper - iPhone application

I am facing a typical problem in rotating an object. Description is as given below I have taken two CGPoint let say point1 and point2 point1 = (50,50) point2 = (150, 50) this point will draw a ...
5
votes
2answers
188 views

Finding rotation between two congruent triangles

I'm working on a 3D mesh parsing tool. Currently, I'm trying to determine the rotation between two congruent triangles in 3D space—we'll call them ABC and DEF. I'm able to translate points A ...
5
votes
1answer
373 views

Unwanted white background visible around UITableView when rotating from landscape to portrait

I have a UITableView in an iPad application that I am working on. When I start in a portrait view and rotate to landscape, the view rotates and the rotation looks good. However, when I rotate from ...
5
votes
2answers
533 views

OpenCV - How to detect and measure an angle between two frames?

I'm trying to understand and use OpenCV. I wanted to know if it is possible to find and measure an angle between two frames. I explain : The cam is fix and the frames could rotate around the center ...
5
votes
1answer
613 views

rotating a view on touch

I have to rotate a view circularly on finger touch...I mean like dialing the old phones number...and the touch should be only on corners.....can any one help me...i have tried it a lot...but was not ...
5
votes
1answer
2k views

MPMoviewPlayerController fullscreen playback rotation with underlying UIViewController with portrait mode only (rotation disallowed)

Hallo, I have a simple application, which does contain UITabBarController with two UIViewControllers. Both UIViewControllers are portrait only (no rotation allowed). One UIViewController's UIView ...
5
votes
3answers
471 views

How can I make my Cursor survive an orientation change?

I am trying to make my app rotation friendly, but I am having some problems saving the cursor. The cursor holds about 13k+ rows of data displayed in a ListView, and thus would take quite a while if I ...
5
votes
2answers
2k views

Android API Version Compatibility

I'd like my app to run on both Android versions 2.1 and 2.2. In one area of my app, there is a portrait-style camera - the process for producing a portrait camera preview is different (as far as I ...
5
votes
6answers
436 views

Does anyone know an efficient way to rotate a 32 * 32 bit matrix by 90 degrees in C#? [closed]

Possible Duplicate: How do you rotate a two dimensional array? I have 32 Int32's. Picture this as a block of 32 * 32 bits. I need to rotate this block of bits 90 degrees clockwise. What's ...
5
votes
2answers
818 views

Component of a quaternion rotation around an axis

I'm having trouble finding any good information on this topic. Basically I want to find the component of a quaternion rotation, that is around a given axis (not necessarily X, Y or Z - any arbitrary ...
5
votes
5answers
703 views

How to do correct polygon rotation? ( in C# though it applies to anything )

Hi I'm using this C# code to rotate polygons in my app - they do rotate but also get skewed along the way which is not what i want to happen. All the polygons are rectangles with four corners defined ...

1 2 3 4 5 25