Tagged Questions

13
votes
6answers
2k 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 …
5
votes
3answers
1k views

how to create iphone’s wobbling icon effect?

Hello, 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 …
4
votes
1answer
135 views

Rotating coordinates around an axis

I'm representing a shape as a set of coordinates in 3D, I'm trying to rotate the whole object around an axis (In this case the Z axis, but I'd like to rotate around all three once I get it working). …
4
votes
0answers
209 views

Recommended LCD Monitor in “Rotate 90 Degrees” Mode for Programming? [closed]

I've noticed some coders taking a 24" monitor and rotating it 90 degrees like this: This definitely makes reading and writing code easier in certain circumstances. However I've found that most LCD …
4
votes
3answers
3k 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 …
4
votes
4answers
2k views

Finding Rotation Angles between 3d points

I am writing a program that will draw a solid along the curve of a spline. I am using visual studio 2005, and writing in C++ for OpenGL. I'm using FLTK to open my windows (fast and light toolkit). I …
3
votes
2answers
58 views

How to rotate about the center of screen using quaternions in opengl?

I am trying implement arcball/trackball rotation but I have a problem with the center of rotation. I want the center to be the center of my screen no matter what. Let me explain what I have done so …
3
votes
4answers
602 views

C++/OpenGL - Rotating a rectangle

Hi, For my project i needed to rotate a rectangle. I thought, that would be easy but i'm getting an unpredictable behavior when running it.. Here is the code: glPushMatrix(); …
3
votes
4answers
1k 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 …
3
votes
3answers
2k views

how do I find the angle of rotation of the major axis of an ellipse given its bounding rectangle?

I have an ellipse centered at (0,0) and the bounding rectangle is x = [-5,5], y = [-6,6]. The ellipse intersects the rectangle at (-5,3),(-2.5,6),(2.5,-6),and (5,-3) I know nothing else about the …
3
votes
2answers
588 views

Fast plane rotation algorithm?

I am working on an application that detects the most prominent rectangle in an image, then seeks to rotate it so that the bottom left of the rectangle rests at the origin, similar to how IUPR's OSCAR …
2
votes
2answers
401 views

3D globe rotation issues

Hi all, Im trying to get my 3D sphere to rotate when a user moves their mouse/finger over the sphere. I can get it to rotate no problems, but when I try to add inertia to the sphere using the …
2
votes
3answers
388 views

View controller not getting -shouldAutorotateToInterfaceOrientation: messages on second load?

I have a UIViewController that I'm using to control a "pop-up" view for viewing images throughout my application. It supports autorotation, as it automatically sizes the image to fit properly …
2
votes
3answers
1k views

Rotate normal vector onto axis plane

I have a set of data points in 3D space which apparently all fall onto a specific plane. I use PCA to compute the plane parameters. The 3rd component of PCA gives me the normal vector of the plane …
2
votes
3answers
597 views

How do I detect a rotation on the iPhone without the device autorotating?

Anyone know how to do this? I thought this: -(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { return YES; } - …

1 2 3 4 5 9 next
15 30 50 per page