active questions tagged rotation - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T02:44:00Z http://stackoverflow.com/feeds/tag/rotation http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1801934/wpf-rotate-3d-sphere-to-arbitratry-position 0 WPF Rotate 3D sphere to arbitratry position Mark 2009-11-26T06:45:33Z 2009-11-26T06:45:33Z <p>If I have a sphere that is being rotate by the users mouse, how could I (at any time, say via a button) apply <strong>some</strong> rotation transformation on the Camera so that a specific spot on the Sphere is facing the User?</p> <p>Currently I'm implementing a trackball approach that moves the camera around when the user clicks and drags, and I would like to be able to "Pan" to a specific spot on the Sphere, but I dont know how to calculate the required 3D rotation transformation based on the cameras current position.</p> <p>Any help here would be greatly appreciated.</p> <p>Thanks, Mark</p> http://stackoverflow.com/questions/1784864/flash-as3-how-to-gradually-limit-rotation-of-an-object-influenced-by-y-position 0 Flash AS3: How to gradually limit rotation of an object influenced by y position of mouse eb_Dev 2009-11-23T17:57:21Z 2009-11-25T08:40:21Z <p>Hi,</p> <p>I have created a flash app in which there is a circle with circles plotted along it's circumference, it is rotated when the mouse is moved up or down. The rotation is drawn directly from the y position of the mouse pointer. What I would like to do is grade the movement some how so that the further down the mouse pointer goes the less impact on rotation the movement has.</p> <p>My current code is like this:</p> <pre><code>myCircle.rotationZ = e.localY; </code></pre> <p>Is there some form of math formula I could use which would reduce the amount of rotation the greater the y position of the mouse position?</p> <p>Thanks,</p> <p>eb_dev</p> http://stackoverflow.com/questions/849785/get-un-translated-un-rotated-x-y-coordinate-of-a-point-from-a-javascript-canva 1 Get un-translated, un-rotated (x,y) coordinate of a point from a Javascript canvas Eli Courtwright 2009-05-11T19:57:34Z 2009-11-23T21:03:12Z <p>In Javascript we often render graphics by rotating and translating the coordinate plane before sending things</p> <pre><code>ctx.save(); ctx.translate(someX, someY); ctx.rotate(someAngle * Math.PI / 180); ctx.beginPath(); ctx.moveTo(x1, y1); // What's the actual (x1,y1)? ctx.lineTo(x2, y2); // What's the actual (x2,y2)? ctx.stroke(); ctx.restore(); </code></pre> <p>So having done this, how do I figure out the actual values of the endpoints of that line segment I've drawn? Because after that translating and rotating, (x1,y1) and (x2,y2) are somewhere far away from where they'd be without the translating and rotating. Is there an easy way to find out what their actual values are?</p> http://stackoverflow.com/questions/1778738/how-to-resolve-this-rotation-problem 1 How to resolve this rotation problem? walkthedog 2009-11-22T13:47:01Z 2009-11-22T19:12:18Z <p>Hey there</p> <p>For sure this is very trivial math stuff for some of you. </p> <p>But: When I rotate a view, lets say starting at 0 degrees and rotating forward 0.1, 1, 10, 100, 150, 160, 170, 179, 179,999, and keeping on rotating in the same direction, this happens, to say it loud and clear: BANG !!!! BAAAAAAAAANNNNNGGGG!!!! -179,9999, -170, -150, -50, 0, 50, 100, 170, 179,99, and again: BBBBAAAANNNGGG!!! -179,999, -170, -100, and so on... for sure you know what I mean ;-)</p> <p>Imagine you driving on a road and suddenly your miles-o-meter jumps negative like that. You wold freak out, right?</p> <p>And you know what? This is VERY bad for my algorithm. I have <em>no</em> idea how to resolve this other than checking in if-else-blocks if my value suddenly swapped over. Something tells me I have to look at some math functions like sinus waves and other stuff. But my math knowledge sucks to the highest degree.</p> <p>How can I solve this out? I try to calculate distances between angles, i.e. I have two views where one resides on the other, and both are rotated. And I want to calculate the overall rotation of both views. This little but mad thingy destroys my calculations as soon as values swap over suddenly from -179,99999 to 179,99999. Also I don't know if a 180 exists or if things swap somewhere at fabsf(179,999999999999999999999) if you know what I mean.</p> <p>For example: What would be -170 degrees minus 50 degrees? Well, I think -220 degrees. But instead when I rotate -170 - 50 I end up getting this value: 40 degrees.</p> <p>How can I receive what I expect, the -220 instead of 40, without any kind of unsecure swapping-if-else logic? Sometimes my selfmade-swapper works, but sometimes it doesnt due to math incprecisions. </p> <p><strong>Edit:</strong> I calculate the angles from the transform.rotation.z property of the view's layers.</p> http://stackoverflow.com/questions/879064/how-to-capture-current-view-screenshot-and-reuse-in-code-iphone-sdk 3 How to capture current view screenshot and reuse in code? (iPhone SDK) Carson C. 2009-05-18T18:15:22Z 2009-11-22T09:42:12Z <p>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 rotation, the default animation provided by UIKit (rotating the currently displayed view) is inappropriate conceptually.</p> <p>Simply disabling the animation and swapping the views suddenly is tolerable, but is far below the polish I'm building into the rest of the app. What I would prefer to do is this:</p> <p>When shouldAutorotateToInterfaceOrientation: is called, I would like to grab an opaque view snapshot, a screenshot if you will, of the user view before rotation. Then after the rotation is completed and the system has applied the view transforms etc, I can show the snapshot view I saved and animate a transition of my choice to my new view. After it is completed, I can release my snapshot and move on.</p> <p>Is there a way to do this that is not expensive?</p> <p>The only other option I can think of is to return NO on all orientations other than my default one, and then react by applying my own animations and transforms. I'd prefer to use the system to do this however, as I feel it is likely doing it myself could cause "undefined" keyboard behavior in the manually rotated view, etc.</p> <p>Thoughts?</p> http://stackoverflow.com/questions/1159543/apache-log-rotation-script 1 Apache Log rotation Script Scott 2009-07-21T14:26:58Z 2009-11-19T21:28:11Z <p>I have the following script running to backup my apache logs</p> <pre><code>#!/bin/sh dt=`date +%m%d%Y` cp /var/log/httpd/domainname/www/error_log /var/log/httpd/domainname/www/oldlogs/error_log$dt cat /dev/null &gt; /var/log/httpd/domainname/www/error_log cp /var/log/httpd/domainname/www/access_log /var/log/httpd/domainname/www/oldlogs/access_log$dt cat /dev/null &gt; /var/log/httpd/domainname/www/access_log </code></pre> <p>Which is scheduled via cron. So each night the logs get backed up and emptied. However, the next morning I always get files with weird characters after the date</p> <pre><code>[me@computer oldlogs]# ls access_log07202009?? access_log07212009?? error_log07202009?? error_log07212009?? [me@computer oldlogs]#cat access_log072 access_log07202009^M^Maccess_log07212009^M^M </code></pre> <p>and I'm unable to find what is causing it. Any idea?</p> http://stackoverflow.com/questions/1739652/wpf-3d-rotation-animations 0 WPF 3d rotation animations Mark 2009-11-16T01:54:27Z 2009-11-19T06:35:54Z <p>Hi Everyone,</p> <p>I have a few 3d rectangles on my screen that I want to pivot around the Y axis. </p> <p>I want to press down with the mouse, and rotate the 3d object to a max rotation, but when the user moves their mouse, I want to slightly rotate it so that it looks like a see-saw (rotating from a range of -13 to 13 degrees on the Y-Axis).</p> <p>At the moment, I can do this, but my frame rate really really suffers when I move the mouse quickly. So for example, when I click the left side of the rectangle, I generate a storyboard and animation objects, then rotate the 3d object to -13 degrees. Then when I slightly move the mouse to the right, I want to rotate it to -12.5, and so on...</p> <p>Again, I can do all of this, its just that the performance suffers greatly! It goes down to 5-FPS in some cases... which is not acceptable.</p> <p>My question is am I doing this the best way? How else could you animate a rotation base on the users position on the screen?</p> <p>Thanks for any help you can provide! Mark</p> http://stackoverflow.com/questions/1717288/in-place-rotation-c-practice 0 In Place rotation C++ Practice lampshade 2009-11-11T18:48:44Z 2009-11-19T00:06:42Z <p>Hello,</p> <p>I have a working rotating function going for my "items" int array. The code below gets it done, except that im transferring values out unnecessarily. Im trying to acheive the "inplace" rotation. What I mean by that is where the ptrs would increment or decrement instead of grabbing values out of the array..By which I need to "up" the efficiency level in that way for this method..Any Suggestions?</p> <pre><code>void quack::rotate(int nRotations) { if ( count &lt;= 1 ) return; else // make sure our ptrs are where we want them. { intFrontPtr = &amp;items[0].myInt; intBackPtr = &amp;items[count-1].myInt; } for (int temp = 0; nRotations != 0;) { if ( nRotations &gt; 0 ) { temp = *intFrontPtr; *intFrontPtr = *intBackPtr; *intBackPtr = temp; // Connect temps for the rotation --intBackPtr; // Move left [...&lt;-] into the array } else if ( nRotations &lt; 0 ) { temp = *intBackPtr; *intBackPtr = *intFrontPtr; *intFrontPtr = temp; // Connect temps for the rotation ++intFrontPtr; // Move right [-&gt;...] into the array } if ( intBackPtr == &amp;items[0].myInt || intFrontPtr == &amp;items[count-1].myInt ) { intFrontPtr = &amp;items[0].myInt; intBackPtr = &amp;items[count-1].myInt; // need to re-set if ( nRotations &gt; 0 ) nRotations--; // Which ways did we rotate? else nRotations++; } } } </code></pre> <p>Oh yes, Im trying to practice c++ and know their are many functions floating around that are programmed to do this already...Im trying to "build my own". I think i've got it down syntactically, but the efficiency is always where i struggle. As, a novice, I would greatly appreciate critisim towards this aspect..</p> http://stackoverflow.com/questions/1638690/getting-device-orientation-before-rotating-or-forcing-it-at-launch-any-ideas 0 Getting device orientation before rotating or forcing it at launch. Any ideas? sniurkst 2009-10-28T17:10:41Z 2009-11-18T20:40:10Z <p>Hello, I'm here again!</p> <p>I have a deadline soon and I have very annoying bug in front of me and no ideas, how to fix it. The problem is, that sometimes device doesn't know what it's orientation is before it has been rotated and so it messes up frames in conditional statements:</p> <pre><code> if (orient == UIInterfaceOrientationPortrait || orient == 0){ r = CGRectMake(0.0, 0.0, 320.0, 480.0); // draw stuff } else { r = CGRectMake(0.0, 0.0, 480.0, 320.0); // draw stuff } </code></pre> <p>This bug can be easily reproduced if I keep device on the table or in hands (horizontal position) and run my application, it draws landscape-like rectangles in portrait type screen.</p> <p>My questions are: can I somehow get the right orientation in this kind of situation? Too bad it can not be reproduced in simulator, so I'm not sure if the code I pasted is responsible for this bug, but that is the place where I fix view frames according to orientation. Maybe there's another (proper) way to do that? And maybe I can force application to be in portrait mode until rotation event will be fired?</p> http://stackoverflow.com/questions/1755004/table-view-rotate-but-not-properly-shape-change 0 Table View rotate, but not properly (shape change) Pencrace 2009-11-18T10:21:35Z 2009-11-18T10:53:30Z <p>Hello everyone, </p> <p>Here is the thing. I have a ViewController which contain a view in full window. And the program run in landscape mode. I want to put an UITableView over the full screen view but only on right half part of the screen. So I add a UITableView in my view controller, I used the Interface Builder in order to set the Table View in the upper half of the screen so It will be on the right part in LandscapeLeft mode.</p> <p>I searched for on a lot of forum how to rotate my Table View. And so it does... except, It get stuck on the upper half of the landscape mode, it should stick on the right half.</p> <p>I'm not a iPhone coder since long, so I'm a bit confused on how to solve this problem. Do you have any idea on how to resize or make the TableView rotate properly.</p> <p>Thanks,</p> http://stackoverflow.com/questions/1665375/3d-globe-rotation-issues 2 3D globe rotation issues Mark 2009-11-03T05:18:44Z 2009-11-18T09:50:13Z <p>Hi all,</p> <p>Im trying to get my 3D sphere to rotate when a user moves their mouse/finger over the sphere.</p> <p>I can get it to rotate no problems, but when I try to add inertia to the sphere using the Affine2DInertiaProcessor in the Surface SDK, I get jumping issues when I quickly flick the sphere, and I dont know why...</p> <p>Here is my initialisation code:</p> <pre><code> private void InitializeManipulationProcessor() { manipulationProcessor = new Affine2DManipulationProcessor( Affine2DManipulations.Rotate | Affine2DManipulations.TranslateX | Affine2DManipulations.TranslateY, _eventSource); inertiaProcessor = new Affine2DInertiaProcessor(); inertiaProcessor.Affine2DInertiaDelta += Inertia_OnManipulationDelta; inertiaProcessor.Affine2DInertiaCompleted += InertiaProcessor_Affine2DInertiaCompleted; manipulationProcessor.Affine2DManipulationStarted += OnManipulationStarted; manipulationProcessor.Affine2DManipulationDelta += Manipulation_OnManipulationDelta; manipulationProcessor.Affine2DManipulationCompleted += OnManipulationCompleted; } </code></pre> <p>When a user moves their finger, here is the code to rotate the sphere:</p> <pre><code>private void Manipulation_OnManipulationDelta(object sender, Affine2DOperationDeltaEventArgs e) { Point currentPosition = e.ManipulationOrigin; // avoid any zero axis conditions if (currentPosition == _previousPosition2D) return; Track(currentPosition); _previousPosition2D = currentPosition; } </code></pre> <p>This starts the ineria, when the user stops moving their finger:</p> <pre><code>private void OnManipulationCompleted(object sender, Affine2DOperationCompletedEventArgs e) { inertiaProcessor.InitialOrigin = e.ManipulationOrigin; inertiaProcessor.InitialVelocity = e.Velocity; inertiaProcessor.DesiredDeceleration = 0.0001; inertiaProcessor.Begin(); } </code></pre> <p>The magic of the rotation, happens in the <strong>Track</strong> method below:</p> <pre><code> private void Track(Point currentPosition) { Vector3D currentPosition3D = ProjectToTrackball(currentPosition); Vector3D axis = Vector3D.CrossProduct(_previousPosition3D, currentPosition3D); double angle = Vector3D.AngleBetween(_previousPosition3D, currentPosition3D); // quaterion will throw if this happens - sometimes we can get 3D positions that // are very similar, so we avoid the throw by doing this check and just ignoring // the event if (axis.Length == 0) return; Quaternion delta = new Quaternion(axis, -angle); // Get the current orientantion from the RotateTransform3D Quaternion q = new Quaternion(_rotation.Axis, _rotation.Angle); // Compose the delta with the previous orientation q *= delta; // Write the new orientation back to the Rotation3D _rotation.Axis = q.Axis; _rotation.Angle = q.Angle; _previousPosition3D = currentPosition3D; } </code></pre> <p>The _rotation var is the <strong>AxisAngleRotation3D</strong> class used for the <strong>RotateTransform3D</strong> on the 3d mesh.</p> <p>I know this is a specialty case, but I have a feeling that it is a calculation issue, and I really have no idea how to debug this.</p> <p>One more thing, a very interesting thing to note is that if I flick the globe slowly I do NOT get any jumping and it is very smooth! So it must be something to do with either large calculations, or just some bug...</p> <p>If you are good at 3D rotation and truly believe that you can help, then I will be happy to package up this project into a ZIP and send it to you if you need a better format to work with</p> <p>Thanks for any help you can give, i really appreciate the help!</p> <p>Mark</p> http://stackoverflow.com/questions/1754218/uiimage-rotation-offset 0 UIImage Rotation Offset woody993 2009-11-18T07:31:47Z 2009-11-18T07:44:48Z <p>I have the following code</p> <pre><code>- (void)ComputeRotationWithRadians:(CGFloat)rad { CGFloat width = exportImage.size.width; CGFloat height = exportImage.size.height; UIGraphicsBeginImageContext(CGSizeMake(width, height)); CGContextRef ctxt = UIGraphicsGetCurrentContext(); CGContextScaleCTM(ctxt, 1.0, -1.0); CGContextTranslateCTM(ctxt, 0.0, -exportImage.size.height); CGContextRotateCTM(ctxt, rad); CGContextDrawImage(UIGraphicsGetCurrentContext(), CGRectMake(0, 0, width, height), exportImage.CGImage); exportImage = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext(); [imageView setImage:exportImage]; } </code></pre> <p>The issue is that the rotation happens around the bottom left corner, when it has been calculated around the center. Is there anyway to change this?</p> http://stackoverflow.com/questions/1743398/any-free-polygon-library-for-the-iphone 0 Any free polygon library for the iPhone? CodeFlakes 2009-11-16T16:50:17Z 2009-11-17T09:11:35Z <p>I need a library that can manage polygon modeling and basic transformation like rotating and translating. I'd rather not redevelop everything from scratch Thanks</p> http://stackoverflow.com/questions/1196774/animate-rotation 1 animate rotation Mike 2009-07-28T21:13:00Z 2009-11-16T11:00:05Z <p>I'm trying to animate a rotation using CATransform3DMakeRotation, but the problem is once the animation is finished, the image goes back to its initial position, i.e back to zero. But I'd like to keep it where it finished rotating. How would I do that?</p> <p><strong>edit</strong> What I'm trying to do is to create the same compass which comes with the new iPhone. Basically the locationmanager gives me new headings every few seconds (or several per second). Using the new heading and the timestamp, I was trying to get a smooth animation of the image but not getting anywhere. The only thing which seems to work is applying the transform directly, e.g. </p> <pre><code>compassimage.layer.transform = CATransform3DMakeRotation(newHeading.trueHeading *M_PI/180,0,0,1.0): </code></pre> <p>but that's not animated...</p> http://stackoverflow.com/questions/233850/tetris-piece-rotation-algorithm 13 Tetris Piece Rotation Algorithm coppercoder 2008-10-24T14:49:54Z 2009-11-16T04:26:31Z <p>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.</p> <p>Most tetris games seem to use a naive "remake the array of blocks" at each rotation:</p> <p><a href="http://www.codeplex.com/Project/ProjectDirectory.aspx?ProjectSearchText=tetris" rel="nofollow">http://www.codeplex.com/Project/ProjectDirectory.aspx?ProjectSearchText=tetris</a></p> <p>However, some use pre-built encoded numbers and bit shifting to represent each piece:</p> <p><a href="http://www.codeplex.com/wintris" rel="nofollow">http://www.codeplex.com/wintris</a></p> <p>Is there a method to do this using mathematics (not sure that would work on a cell based board)?</p> http://stackoverflow.com/questions/1703810/iphone-draw-rotated-text 1 iPhone: Draw rotated text? SidneySM 2009-11-09T21:05:56Z 2009-11-11T20:17:12Z <p>I want to draw some text in a view, rotated 90°. I'm pretty new to iPhone development, and poking around the web reveals a number of different solutions. I've tried a few and usually end up with my text getting clipped.</p> <p>What's going on here? I <em>am</em> drawing in a fairly small space (a table view cell), but there has to be a "right" way to do this… right?</p> <p><hr></p> <p><strong>Edit:</strong> Here are a couple of examples. I'm trying to display the text "<strong>12345</strong>" along the black bar at the left.</p> <ol> <li><p>First attempt, from <a href="http://discussions.apple.com/message.jspa?messageID=7878554#7878554" rel="nofollow">RJShearman on the Apple Discussions</a></p> <pre><code>CGContextRef context = UIGraphicsGetCurrentContext(); CGContextSelectFont (context, "Helvetica-Bold", 16.0, kCGEncodingMacRoman); CGContextSetTextDrawingMode (context, kCGTextFill); CGContextSetRGBFillColor(context, 1.0, 0.0, 0.0, 1.0); CGContextSetTextMatrix (context, CGAffineTransformRotate(CGAffineTransformScale(CGAffineTransformIdentity, 1.f, -1.f ), M_PI/2)); CGContextShowTextAtPoint (context, 21.0, 55.0, [_cell.number cStringUsingEncoding:NSUTF8StringEncoding], [_cell.number length]); CGContextRestoreGState(context); </code></pre> <p><img src="http://dev.deeptechinc.com/sidney/iphonerotation/attempt1.png" alt="Attempt one. The one and part of the two are clipped out."></p></li> <li><p>Second attempt, from <a href="http://www.iphonedevsdk.com/forum/iphone-sdk-development/10315-rotate-text-problem.html#post97064" rel="nofollow">zgombosi on iPhone Dev SDK</a>. Identical results (the font was slightly smaller here, so there's less clipping).</p> <pre><code>CGContextRef context = UIGraphicsGetCurrentContext(); CGPoint point = CGPointMake(6.0, 50.0); CGContextSaveGState(context); CGContextTranslateCTM(context, point.x, point.y); CGAffineTransform textTransform = CGAffineTransformMakeRotation(-1.57); CGContextConcatCTM(context, textTransform); CGContextTranslateCTM(context, -point.x, -point.y); [[UIColor redColor] set]; [_cell.number drawAtPoint:point withFont:[UIFont fontWithName:@"Helvetica-Bold" size:14.0]]; CGContextRestoreGState(context); </code></pre> <p><img src="http://dev.deeptechinc.com/sidney/iphonerotation/attempt2.png" alt="Attempt two. There is almost identical clipping"></p></li> </ol> http://stackoverflow.com/questions/1694041/rotating-coordinates-around-an-axis 4 Rotating coordinates around an axis JS 2009-11-07T18:56:46Z 2009-11-07T19:15:44Z <p>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).</p> <p>I've written some code to do this using a rotation matrix:</p> <pre><code> //Coord is a 3D vector of floats //pos is a coordinate //angles is a 3d vector, each component is the angle of rotation around the component axis //in radians Coord&lt;float&gt; Polymers::rotateByMatrix(Coord&lt;float&gt; pos, const Coord&lt;float&gt; &angles) { float xrot = angles[0]; float yrot = angles[1]; float zrot = angles[2]; //z axis rotation pos[0] = (cosf(zrot) * pos[0] - (sinf(zrot) * pos[1])); pos[1] = (sinf(zrot) * pos[0] + cosf(zrot) * pos[1]); return pos; } </code></pre> <p>The image below shows the object I'm trying to rotate (looking down the Z axis) before the rotation is attempted, each small sphere indicates one of the coordinates I'm trying to rotate</p> <p><img src="http://www.cs.nott.ac.uk/~jqs/notsquashed.png" alt="alt text"></p> <p>The rotation is performed for the object by the following code:</p> <pre><code> //loop over each coordinate in the object for (int k=start; k&lt;finish; ++k) { Coord&lt;float&gt; pos = mp[k-start]; //move object away from origin to test rotation around origin pos += Coord&lt;float&gt;(5.0,5.0,5.0); pos = rotateByMatrix(pos, rots); //wrap particle position //these bits of code just wrap the coordinates around if the are //outside of the volume, and write the results to the positions //array and so shouldn't affect the rotation. for (int l=0; l&lt;3; ++l) { //wrap to ensure torroidal space if (pos[l] &lt; origin[l]) pos[l] += dims[l]; if (pos[l] &gt;= (origin[l] + dims[l])) pos[l] -= dims[l]; parts-&gt;m_hPos[k * 4 + l] = pos[l]; } } </code></pre> <p>The problem is that when I perform the rotation in this way, with the angles parameter set to (0.0,0.0,1.0) it works (sort of), but the object gets deformed, like so:</p> <p><img src="http://www.cs.nott.ac.uk/~jqs/squashed.png" alt="alt text"></p> <p>which is not what I want. Can anyone tell me what I'm doing wrong and how I can rotate the entire object around the axis without deforming it?</p> <p>Thanks</p> <p>nodlams</p> http://stackoverflow.com/questions/1668470/how-can-i-rotate-an-image-in-net-and-output-it-to-the-client-as-a-png 0 How can I rotate an image in .NET and output it to the client as a PNG? Will 2009-11-03T16:29:44Z 2009-11-03T17:23:49Z <p>I have an .aspx file that outputs an image using the following methods:</p> <pre><code> Server.MapPath("somefile.png") Response.ContentType = "image/png"; Response.WriteFile(fileURI); </code></pre> <p>I have a function that rotates the image by 0-360 degrees and returns it as a bitmap.</p> <p>How can I take this in-memory bitmap and then write it out to the client as a PNG?</p> http://stackoverflow.com/questions/1631988/recommended-lcd-monitor-in-rotate-90-degrees-mode-for-programming 4 Recommended LCD Monitor in "Rotate 90 Degrees" Mode for Programming? [closed] Dave 2009-10-27T16:20:48Z 2009-11-03T15:23:33Z <p>I've noticed some coders taking a 24" monitor and rotating it 90 degrees like this:</p> <p><img src="http://support.dell.com/support/edocs/monitors/2005FPW/GRAPHICS/monitor-base-2.gif" alt="alt text" /></p> <p>This definitely makes reading and writing code easier in certain circumstances. However I've found that most LCD monitors look like crap in this mode. Color is off, pixels aren't as sharp, and it's generally harder to read code.</p> <p>Do any of you recommend a good make/model LCD monitor which alleviates these issues in 90 degree mode? Preferably 24", HDMI, and 1920x1200. Or is this an issue among all monitors, possibly derived from the way LCD screens are manufactured?</p> <p>Disclaimer: I know this isn't a programming question per-say, but I think any answers would be useful to coders when setting up their work environment.</p> http://stackoverflow.com/questions/1536987/iphone-reload-view-after-rotation 0 Iphone: reload view after rotation Madoc 2009-10-08T10:35:24Z 2009-11-01T07:00:03Z <p>Hi there..</p> <p>I have developed my first iphone app, but have some problems with the auto rotation. After a rotation the screen is cut off, and I have to switch to another tab and then back to get it right.. </p> <p>I guess, if I can reload the the view after the rotation, it will probably work fine.. Any tips on how to do that (or alternative solutions)? </p> <p>Thanks! :)</p> http://stackoverflow.com/questions/1651128/rotating-multidimension-matrix 0 rotating multidimension matrix. Absolute0 2009-10-30T17:10:05Z 2009-10-30T17:35:07Z <p>Given a 4x4 matrix, what formula could i apply to each (x,y) cell to yield an (x,y) if the matrix was rotated 90 degrees to the right? I tried iterating over each cell but different cells gave different formulas.</p> <p>Given the following matrix of values. </p> <pre><code>0| | | | | 1| | | | | 2| | | | | 3| | | | | ------------- 0 1 2 3 </code></pre> <p>Rotate the values 90 degrees by moving the value in (x,y) to the (x,y) value in the matching cell using the matrix below:</p> <pre><code>0 | 0,3 | 0,2 | 0,1 | 0,0 | 1 | 1,3 | 1,2 | 1,1 | 1,0 | 2 | 2,3 | 2,2 | 2,1 | 2,0 | 3 | 3,3 | 3,2 | 3,1 | 3,0 | -------------------------- 0 1 2 3 </code></pre> <p>ie:</p> <pre><code>If cell (0,0) has the value 5, using the translation matrix 5 would move to (3,0). </code></pre> <p>Hard-coding this translation matrix is tedious and error prone, and if the matrix size grows to huge numbers doing this by hand is simply retarded. </p> http://stackoverflow.com/questions/1641455/rotation-in-phps-regex 1 Rotation in PHP's regex Masi 2009-10-29T03:28:43Z 2009-10-29T03:45:39Z <p>How can you match the following words by PHP, either by regex/globbing/...?</p> <p>Examples</p> <pre><code>INNO, heppeh, isi, pekkep, dadad, mum </code></pre> <p>My attempt would be to make a regex which has 3 parts: </p> <ol> <li>1st match match [a-zA-Z]*</li> <li>[a-zA-Z]?</li> <li>rotation of the 1st match // Problem here!</li> </ol> <p>The part 3 is the problem, since I do not know how to rotate the match. This suggests me that regex is not the best solution here, since it is too very inefficient for long words.</p> http://stackoverflow.com/questions/1605069/iphone-uitableview-rotation-disappearing-tables 0 iPhone UITableView + Rotation = Disappearing Tables ? DOOManiac 2009-10-22T04:48:36Z 2009-10-28T17:20:25Z <p>I'm trying to replicate Apple's "Edit Details" functionality, where a grouped UITableView is shown with 1 row, and the entire cell is one big UITextView. For an example, go to the Contacts app, edit a contact, and add a Note field. That's what I'm going for.</p> <p>The problem I'm having is when you rotate the phone. The first time you rotate (portrait -> landscape) everything is fine. But when you rotate back, the table disappears. No clue why, and I'm banging my head against the wall as to finding a solution. I've been working on this for literally days to no avail.</p> <p>The first method I tried was to implement tableView:heightForRowAtIndexPath, returning different heights based on whether it was landscape or not.</p> <p>Another implementation I tried was having 2 completely separate views in the controller:<br /> UIView *landscape;<br /> UIView *portrait;<br /> and switching these in willAnimateRotationToInterfaceOrientation. No dice there either.</p> <p>I've also tried fiddling with the bounds and frame of self.tableView, as well as self.tableview.contentOffset, but none of that seems to have any effect whatsoever.</p> <p>Is there some example out there that I'm failing to google that already shows exactly what I want to do <em>with rotation</em>? I'd imagine this is a very common situation, but I haven't been able to find anything.</p> <p>So I guess my question is, has anyone else ran into something like this before, and can at least point me in the right direction of where to look? Or knows of some common pitfalls that maybe I'm missing? I'm about to just say screw it and not allow rotation in the Edit Details view, but considering that's when users are most likely to want a landscape keyboard I'd really like to have it if possible...</p> <p>Thanks for any help anyone can provide.</p> http://stackoverflow.com/questions/1634795/matrix-multiplication-to-rotate-an-image-in-c 0 Matrix Multiplication To Rotate An Image In C# Cistoran 2009-10-28T02:06:32Z 2009-10-28T05:02:03Z <p>I need to write a program that uses matrix multiplication to rotate an image (a simple square), based on the center of the square, a certain amount of degree based on what I need. Any help on this would be greatly appreciated. I almost have no clue as to what I'm doing because I have not taken so much as a glance at Calculus.</p> http://stackoverflow.com/questions/1628386/normalise-orientation-between-0-and-360 -1 Normalise orientation between 0 and 360 JuniorDeveloper 2009-10-27T02:02:32Z 2009-10-27T12:24:53Z <p>Hi,</p> <p>I'm working on a simple rotate routine which normalizes an objects rotation between 0 and 360 degrees. My C# code seems to be working but I'm not entirely happy with it. Can anyone improve on the code below making it a bit more robust?</p> <pre><code>public void Rotate(int degrees) { this.orientation += degrees; if (this.orientation &lt; 0) { while (this.orientation &lt; 0) { this.orientation += 360; } } else if (this.orientation &gt;= 360) { while (this.orientation &gt;= 360) { this.orientation -= 360; } } } </code></pre> http://stackoverflow.com/questions/1500060/view-controller-not-getting-shouldautorotatetointerfaceorientation-messages-on 2 View controller not getting -shouldAutorotateToInterfaceOrientation: messages on second load? pix0r 2009-09-30T19:04:05Z 2009-10-26T13:31:34Z <p>I have a <code>UIViewController</code> 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 regardless of orientation. This works perfectly, but only the first time I initialize and display the view controller. When it closes, I am removing the <code>UIView</code> from my view hierarchy and releasing the view controller - but the next time I instantiate and add it to my view hierarchy, it stops receiving the <code>-shouldAutorotateToInterfaceOrientation</code> messages when the phone is rotated.</p> <p>This is how I instantiate and display it:</p> <pre><code>popupVC = [[PopupVC alloc] init]; [popupVC viewWillAppear:NO]; [[[UIApplication sharedApplication] keyWindow] addSubview:popupVC.view]; [popupVC viewDidAppear:NO]; </code></pre> <p>this is how I remove/release it when it's finished:</p> <pre><code>[popupVC viewWillDisappear:NO]; [popupVC.view removeFromSuperview]; [popupVC viewDidDisappear:NO]; [popupVC release]; popupVC = nil; </code></pre> <p>I've tried looping through <code>[[UIApplication sharedApplication] keyWindow]</code> subviews to see if somehow my popup view isn't on top, but it always is. And it has a different address each time so I do know that it's a different instance of the view controller class.</p> <p>As requested, here is the complete <code>loadView</code> method from <code>PopupVC</code>:</p> <pre><code>- (void)loadView { UIView *myView = [[UIView alloc] initWithFrame:[UIScreen mainScreen].applicationFrame]; myView.backgroundColor = self.overlayColor; myView.autoresizesSubviews = NO; myView.hidden = YES; myView.autoresizingMask = UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth; self.view = myView; [myView release]; _isVisible = NO; UIView *myMaskView = [[UIView alloc] initWithFrame:self.view.bounds]; myMaskView.backgroundColor = [UIColor clearColor]; myMaskView.clipsToBounds = YES; myMaskView.hidden = YES; myMaskView.autoresizesSubviews = NO; myMaskView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight; [self.view addSubview:myMaskView]; self.imageMaskView = myMaskView; [myMaskView release]; UIImageView *myImageView = [[UIImageView alloc] initWithFrame:CGRectZero]; myImageView.center = self.view.center; myImageView.hidden = NO; myImageView.autoresizingMask = UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleHeight; [self.imageMaskView addSubview:myImageView]; self.imageView = myImageView; [myImageView release]; UIButton *myImageButton = [UIButton buttonWithType:UIButtonTypeCustom]; myImageButton.frame = self.view.frame; myImageButton.autoresizingMask = UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleHeight; [myImageButton addTarget:self action:@selector(clickImage:) forControlEvents:UIControlEventTouchUpInside]; [self.imageMaskView addSubview:myImageButton]; self.imageButton = myImageButton; UIActivityIndicatorView *myActivityView = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge]; myActivityView.hidden = YES; [self.view addSubview:myActivityView]; myActivityView.center = self.view.center; self.activityView = myActivityView; [myActivityView release]; } </code></pre> http://stackoverflow.com/questions/1607477/android-1-6-camera-rotation 0 Android 1.6 Camera rotation? Chrispix 2009-10-22T14:06:21Z 2009-10-22T14:06:21Z <p>I posted this on the android dev forums, but wanted to reach out here. </p> <p>One of the activities in our app was taking a picture. The picture preview shows the correct way on screen in 1.5 &amp; 1.6. But when it is saved, it saves the jpg 90 rotated..</p> <p>I can rotate it realtime when displaying, and I guess I could re-save it once saved. My issue is I would like to save it correctly when taking the picture..</p> <pre><code>My app while compiled in 1.5 works fine. I had some memory issues w/ 1.6 due to image size, which was strange b/c the image size increased when taking photos by taking a picture w/ surfaceholder/imagecapture callback. I seem to have fixed re-displaying those images by resizing them using a bitmapfactory matrix. But my camera is now rotating everything 90 degrees. It appears that my Override of surfaceChanged does nothing, which is where I was setting rotation at 90 (I can't remember why, it was 10 months ago!). I have tried at rotating the camera parameters paramters at 90 degrees, 0 degrees. It does not seem to do anything... any thoughts? </code></pre> http://stackoverflow.com/questions/1606066/how-to-prevent-the-view-controllers-in-a-tab-bar-controller-from-rotating 0 How to prevent the view controllers in a tab bar controller from rotating? unforgiven 2009-10-22T09:33:26Z 2009-10-22T09:59:59Z <p>I have a tab bar controller managing 4 tabs. I have subclassed the tab bar controller so that the shouldAutorotateToInterfaceOrientation: method only allows a specific view controller in one of the tabs to rotate. Everything works almost fine: the controllers in the remaining tabs do not rotate. However, when the view controller which is allowed to rotate actually rotates, if the user taps one of the remaining tabs, the corresponding view controller also appear rotated (even though its shouldAutorotateToInterfaceOrientation: method explicitly returns NO).</p> <p>How do I prevent this from happening?</p> <p>To be clear, here is an example. Tapping on the tabs 0,1, or 2 and trying to rotate the device, nothing happens (correctly). Tapping on the tab 4 and rotating the device, the view associated to the view controller of tab 4 is rotated (correctly). Now, still holding the iPhone in the rotated landscape orientation and tapping another tab (0,1, or 2) reveal a rotated view (which is not correct and what I am trying to avoid).</p> http://stackoverflow.com/questions/1595285/what-is-the-best-way-to-rotate-a-cgpoint-on-a-grid 0 What is the best way to rotate a CGPoint on a grid? Frank 2009-10-20T15:02:24Z 2009-10-21T06:41:01Z <p>I want to rotate a CGPoint on the screen depending on the angle and the rotation is anchored on another point. Was wondering what is the most efficient way of doing this?</p> http://stackoverflow.com/questions/1577168/lossless-pdf-rotation 1 Lossless PDF rotation Joril 2009-10-16T09:51:31Z 2009-10-16T12:09:11Z <p>Hi everyone!<br /> is there a way to rotate a PDF 90 degrees <strong>losslessly</strong>, with Python or using the command line?</p> <p>I'm looking for a REAL rotation, not just adding a "/ROTATE 90" inside the PDF, because afterwards I have to send the PDF via Hylafax and it looks like that it ignores those commands.</p> <p>I tried with ImageMagick's <em>convert</em> but the quality of the resulting PDF is quite low.</p> <p>(Python 2.6.2, Xubuntu 9.04)</p> <p>Thanks for your attention!</p>