active questions tagged rectangles - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T05:13:58Z http://stackoverflow.com/feeds/tag/rectangles http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1840800/algorithm-to-reduce-image-to-rectangles 4 Algorithm to reduce image to rectangles? NTAuthority 2009-12-03T15:50:02Z 2009-12-03T18:40:11Z <p>I'm attempting to create pretty large bitmaps in a C# application (6000x6000, though most is transparent) and need to draw them to a specific output API which only supports drawing rectangles.</p> <p>Now, I'm wondering if anyone has an algorithm to reduce a bitmap to a series of filled rectangles of similarly-colored bitmaps; since drawing everything as a 1x1 rectangle is way too slow for this purpose. For example, a circle should be reduces to a large center rectangle, while the rest of the circle is reduced to efficient rectangles. The algorithm doesn't even need to be that fast, since most of the time taken with my single-pixel method is by the looping through every rectangle on the API itself.</p> http://stackoverflow.com/questions/1137690/smallest-set-of-rectangles-describing-a-set-of-integer-points 0 Smallest set of rectangles describing a set of integer points Chris 2009-07-16T13:42:10Z 2009-12-01T22:48:05Z <p>Given a set of N-dimensional integer points how do I find the smallest set of N-dimensional cuboids (rectangles in the 2-d case), such that an integer point is in the set of integer points if and only if it's contained in one or more of the cuboids/rectangles. Integer point means a point with integer coordinates.</p> <p>e.g. given the points (1,0), (2, 0) and (3,1), (4,1) the smallest set of rectangles is (1,0-2,0),(3,1-4,1), see diagram below:</p> <pre>2 ..... 1 ...## 0 .##.. 01234</pre> <p>Obviously I could do a brute force search, but I'm looking for a more efficient algorithm, even if it still has high complexity.</p> http://stackoverflow.com/questions/1792948/whats-a-good-simple-2d-rectangles-only-collision-detection-algorithm 7 What's a good, simple, 2D rectangles-only collision detection algorithm? Alvin Smith 2009-11-24T21:12:43Z 2009-11-24T21:44:16Z <p>I'm designing a collision detection game tutorial for young adults, so I want this to be as simple as possible to make it easier to explain.</p> <p>The requirements are very simple. The world is 2D and contains only rectangles (of arbitrary sizes). BSP and even quadtrees seems like it would be overkill (again, the emphasis is on simplicity) but I would like something more efficient than brute forcing through all n(n-1)/2 possible collisions.</p> <p>2D, rectangles only, and simple.</p> <p>Can anyone point to an algorithm I can look up? Is a quadtree algorithm what I'm looking for?</p> <p>EDIT: Also, the rectangles will never be rotated (I'm keeping it simple). And to give you an idea of what scale I'm working at, there will be on the order of a few hundred rectangles running on your typical user's laptop/desktop (less than 5 years old) implemented in Python with Pygame.</p> http://stackoverflow.com/questions/1551243/finding-the-overlapping-area-of-two-rectangles-in-c 1 Finding the overlapping area of two rectangles (in C#) Evan 2009-10-11T17:38:48Z 2009-10-11T18:35:49Z <p>Edit:</p> <p>Simple code I used to solve the problem in case anyone is interested (thanks to Fredrik):</p> <pre><code> int windowOverlap(Rectangle rect1, Rectangle rect2) { if (rect1.IntersectsWith(rect2)) { Rectangle overlap = Rectangle.Intersect(rect1, rect2); if (overlap.IsEmpty) return overlap.Width * overlap.Height; } return 0; } </code></pre> <p>Original Question:</p> <p>I'd like to know a quick and dirty way to check if two rectangles overlap and if they do calculate the area of the overlap. For curiosities sake I'm interested in the case where 1) all the lines in both rectangles are either vertical or horizontal or 2) the general case for any two rectangles, but the only answer I really need is case 1.</p> <p>I'm thinking along the lines of:</p> <pre><code>double areaOfOverlap( Rect A, Rect B) { if ( A.Intersects(B) ) { // calculate area // return area } return 0; } </code></pre> <p>For A.Intersects() I was thinking of using the separating axis test, but if the rectangles have only horizontal and vertical lines is there an even simpler (faster) way to check?</p> <p>And for calculating the area where they intersect is there an quick way to do it if the rectangles only horizontal and vertical lines?</p> <p>Finally, this is unrelated to the question but I'd appreciate any advice someone may have on a good book / webpage where I could review the math for computer graphics. I've been out of college for a while and feel like I'm forgetting everything :)! Anyone else have that problem?</p> <p>( NOTE: I found this question different than <a href="http://stackoverflow.com/questions/244452/what-is-an-efficient-algorithm-to-find-area-of-overlapping-rectangles">this</a> which seems more complicated and doesn't directly answer the question. )</p> http://stackoverflow.com/questions/1520188/how-to-optimize-the-layout-of-rectangles 2 How to optimize the layout of rectangles badmanj 2009-10-05T13:49:00Z 2009-10-11T05:46:57Z <p>I have a dynamic number of equally proportioned and sized rectangular objects that I want to optimally display on the screen. I can resize the objects but need to maintain proportion.</p> <p>I know what the screen dimensions are.</p> <p>How can I calculate the optimal number of rows and columns that I will need to divide the screen in to and what size I will need to scale the objects to?</p> <p>Thanks,</p> <p>Jamie.</p> http://stackoverflow.com/questions/508844/having-trouble-initializing-an-sdlsurface 1 Having trouble initializing an SDL_Surface William 2009-02-03T20:47:20Z 2009-10-03T12:22:01Z <p>I'm trying to set up something in SDL [in C++] where I can draw a one pixel big rectangle. I've got everything in my code working except my second SDL_Surface called rectangle. I'm having trouble initializing it. Here's the line where I try to initialize it:</p> <pre><code>rectangle = SDL_Surface(SDL_DOUBLEBUF | SDL_HWACCEL | SDL_SRCALPHA | SDL_HWSURFACE, screen-&gt;format, 1, 1, 16, NULL, clip_rect, 1); </code></pre> <p>Thank you for taking the time to read this and any answers you might choose to give.</p> http://stackoverflow.com/questions/1469149/calculating-vertices-of-a-rotated-rectangle 1 Calculating vertices of a rotated rectangle Ben Adamson 2009-09-24T00:00:19Z 2009-09-24T01:53:11Z <p>Hey guys, I am trying to calculate the vertices of a rotated rectangle (2D).</p> <p>It's easy enough if the rectangle has not been rotated, I figured that part out.</p> <p>If the rectangle has been rotated, I thought of two possible ways to calculate the vertices. 1) Figure out how to transform the vertices from local/object/model space (the ones I figured out below) to world space. I honestly have no clue, and if it is the best way then I feel like I would learn a lot from it if I could figure it out...</p> <p>2) Use trig to somehow figure out where the endpoints of the rectangle are relative to the position of the rectangle in world space. This has been the way I have been trying to do up until now, I just haven't figured out how.</p> <p>Here's the function that calculates the vertices thus far, thanks for any help</p> <pre><code>void Rect::calculateVertices() { if(m_orientation == 0) // if no rotation { setVertices( &amp;Vertex( (m_position.x - (m_width / 2) * m_scaleX), (m_position.y + (m_height / 2) * m_scaleY), m_position.z), &amp;Vertex( (m_position.x + (m_width / 2) * m_scaleX), (m_position.y + (m_height / 2) * m_scaleY), m_position.z), &amp;Vertex( (m_position.x + (m_width / 2) * m_scaleX), (m_position.y - (m_height / 2) * m_scaleY), m_position.z), &amp;Vertex( (m_position.x - (m_width / 2) * m_scaleX), (m_position.y - (m_height / 2) * m_scaleY), m_position.z) ); } else { // if the rectangle has been rotated.. } //GLfloat theta = RAD_TO_DEG( atan( ((m_width/2) * m_scaleX) / ((m_height / 2) * m_scaleY) ) ); //LOG-&gt;writeLn(&amp;theta); } </code></pre> http://stackoverflow.com/questions/1386411/vector-math-and-rectangles 0 Vector math and rectangles Armychimp 2009-09-06T19:01:20Z 2009-09-06T19:58:23Z <p>I know this is more high school math(wow been a long time since I was there) but I am trying to solve this programatically so I am reaching out to the collective knowledge of stackoverflow</p> <p>Given this layout:</p> <p><img src="http://farm3.static.flickr.com/2506/3893147349%5F7f397043b5%5Fo.jpg" alt="alt text" /></p> <p>Midpoint is my reference point and in an array I have the vector points of all other points (P)</p> <p>I can get to this state with code of having the light blue area by breaking it into four quadrants and doing a lame bubble sort to find largest(y) or lowest(x) value in each quadrant.</p> <p>I need to find only the quadrants that outer border fully hits red no white space. For example the lower left and the up right dont have any white space hitting the light blue rectangle. </p> <p>I am sure my terminology is all off here and im not looking for any specific code but if someone could point me to a more optimized solution for this problem or the next step in what I already have.</p> <p>Thank you</p> http://stackoverflow.com/questions/306316/determine-if-two-rectangles-overlap-each-other 8 Determine if two rectangles overlap each other? Rob Burke 2008-11-20T18:21:45Z 2009-06-27T14:58:51Z <p>Hi folks,</p> <p>I am trying to write a C++ program that takes the following inputs from the user to construct rectangles (between 2 and 5): height, width, x-pos, y-pos. All of these rectangles will exist parallel to the x and the y axis, that is all of their edges will have slopes of 0 or infinity.</p> <p>I've tried to implement what is mentioned in <a href="http://stackoverflow.com/questions/115426">this</a> question but I am not having very much luck.</p> <p>My current implementation does the following:</p> <pre><code>// Gets all the vertices for Rectangle 1 and stores them in an array -&gt; arrRect1 // point 1 x: arrRect1[0], point 1 y: arrRect1[1] and so on... // Gets all the vertices for Rectangle 2 and stores them in an array -&gt; arrRect2 // rotated edge of point a, rect 1 int rot_x, rot_y; rot_x = -arrRect1[3]; rot_y = arrRect1[2]; // point on rotated edge int pnt_x, pnt_y; pnt_x = arrRect1[2]; pnt_y = arrRect1[3]; // test point, a from rect 2 int tst_x, tst_y; tst_x = arrRect2[0]; tst_y = arrRect2[1]; int value; value = (rot_x * (tst_x - pnt_x)) + (rot_y * (tst_y - pnt_y)); cout &lt;&lt; "Value: " &lt;&lt; value; </code></pre> <p>However I'm not quite sure if (a) I've implemented the algorithm I linked to correctly, or if I did exactly how to interpret this?</p> <p>Any suggestions?</p> http://stackoverflow.com/questions/762548/whats-the-best-way-to-draw-a-bunch-of-200-colored-rectangles-in-cocoa 1 What's the best way to draw a bunch of (~200) colored rectangles in Cocoa? weicool 2009-04-17T23:19:06Z 2009-04-18T19:22:19Z <p>My current plan is to draw the rectangles by subclassing NSView, but that seems like a very inefficient way for what I'm trying to do, which is to draw a bunch of fixed, non-overlapping rectangles that changes colors once in a while. Is there a better way? Thanks.</p> http://stackoverflow.com/questions/720936/how-to-check-whether-a-nspoint-lays-inside-a-nsrect 1 How to check whether a NSPoint lays inside a NSRect Luuk 2009-04-06T10:49:29Z 2009-04-06T16:37:21Z <p>I've created a mutable array containing NSRect values. I want to check whether the NSPoint I created is within this rectangle. What is the best way to do this in cocoa.</p> http://stackoverflow.com/questions/257047/how-to-divide-an-area-composed-of-small-squares-into-bigger-rectangles 6 How to divide an area composed of small squares into bigger rectangles? Christian Walde 2008-11-02T16:51:52Z 2009-04-03T11:14:38Z <p>Where would i go to look for algorithms that take a 2d grid of values that are either 0 or 1 as input and then identifies all possible non-overlapping rectangles in it?</p> <p>In a more practical explanation: I am drawing a grid that is represented by a number of squares, and i wish to find a way to combine as many adjacent squares into rectangles as possible, in order to cut down on the time spent on cycling through each square and drawing it.</p> <p>Maximum efficiency is not needed, speed is more important.</p> <p>Addendum: Apparently what i am looking for seems to be a technique called Tesselation. Now i only need to find a good description for this specific case.</p> <p>Addendum 2: The boundary of the "1" squares will be irregular and in some cases not even connected, as the distribution of "1" squares will be completely random. I need these irregular shapes to be identified and split up into regular rectangles.</p> <p><strong>Correct answer:</strong> To get the best balance between speed and efficiency it is optimal to use the grid data to fill a quad-tree with each node having a status value of either empty/partly filled/filled.</p> http://stackoverflow.com/questions/610462/finding-an-axis-aligned-rectangle-inside-a-polygon 4 Finding an axis-aligned rectangle inside a polygon Joel in Gö 2009-03-04T13:06:10Z 2009-03-10T20:26:12Z <p>I am looking for a good algorithm to find an axis-aligned rectangle inside a (not necessarily convex) polygon. A maximal rectangle would be nice, but is not necessary - any algorithm that can find a "fairly good" rectangle would be fine.</p> <p>The polygon may also have holes, but any pointers to algorithms that only work for convex or simple polygons would be helpful too.</p> <p>In my implementation, intersection testing for sides is fairly cheap, but "point in polygon" tests are expensive, so ideally should be minimised.</p> http://stackoverflow.com/questions/628837/how-to-divide-a-set-of-overlapping-ranges-into-non-overlapping-ranges 3 How to divide a set of overlapping ranges into non-overlapping ranges? Ron Eggbertson 2009-03-10T03:21:07Z 2009-03-10T04:07:40Z <p>Let's say you have a set of ranges:</p> <ul> <li>0 - 100: 'a'</li> <li>0 - 75: 'b'</li> <li>95 - 150: 'c'</li> <li>120 - 130: 'd'</li> </ul> <p>Obviously, these ranges overlap at certain points. How would you dissect these ranges to produce a list of non-overlapping ranges, while retaining information associated with their original range (in this case, the letter after the range)?</p> <p>For example, the results of the above after running the algorithm would be:</p> <ul> <li>0 - 75: 'a', 'b'</li> <li>76 - 94: 'a'</li> <li>95 - 100: 'a', 'c'</li> <li>101 - 119: 'c'</li> <li>120 - 130: 'c', 'd'</li> <li>131 - 150: 'c'</li> </ul> http://stackoverflow.com/questions/462995/graphics-drawrectanglepen-rectanglef 1 Graphics.DrawRectangle(Pen, RectangleF) noroom 2009-01-20T20:37:37Z 2009-02-22T22:12:52Z <p><a href="http://msdn.microsoft.com/en-us/library/system.drawing.graphics.drawrectangle.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.drawing.graphics.drawrectangle.aspx</a></p> <p>FillRectangle, DrawRectangle, FillElipse and DrawEllipse all can take 4 Float (or "Single") parameters: x, y, width, height. DrawRectangle is the only one that will not take a RectangleF, though.</p> <p>I was wondering if anyone knew why this is. It sure seems like they just plain forgot to overload it.</p> http://stackoverflow.com/questions/283219/what-is-the-best-or-at-least-a-good-enough-algorithm-for-automatically-position 0 What is the best (or at least a good enough) algorithm for automatically positioning images within a CSS sprite? John 2008-11-12T07:07:42Z 2008-11-12T07:09:47Z <p>I have written a CSS sprite auto-generator which takes selected images out of the HTML page and converts them to CSS sprites, but right now it does not attempt to lay them out optimally but rather just stacks them, which wastes a lot of space. What would be the best algorithm for determining the optimal layout?</p> <p>To state the problem more generally, I need an algorithm that, given any number of rectangles of arbitrary size, will arrange them into a rectangle with the smallest possible area.</p> http://stackoverflow.com/questions/246726/in-ssrs-can-you-set-a-rectangle-to-grow-with-its-contents 0 In SSRS, can you set a rectangle to grow with its contents? Sam Schutte 2008-10-29T13:09:50Z 2008-10-29T14:55:56Z <p>I'm working on a report in SSRS (SQL Server Reporting Services) right now, and I'm having a problem getting a rectanlge I draw on the page in the report designer to grow. Basically, I've got a rectangle drawn, and then I put a text field inside of it. The contents of this text field can be either very short or very long, so I want it to grow to accomodate its contents.</p> <p>But when I enter the long text, the textbox grows and then sticks outside of the lines of the rectangle. From the SSRS documentation I read, it says rectangles should grow to contain the items within them, and that those items are "peers".</p> <p>What gives?</p> http://stackoverflow.com/questions/153123/packing-rectangles-for-compact-representation 5 Packing rectangles for compact representation. stephanea 2008-09-30T13:56:22Z 2008-09-30T16:50:34Z <p>I am looking for pointers to the solution of the following problem: I have a set of rectangles, whose height is known and x-positions also and I want to pack them in the more compact form. With a little drawing (where all rectangles are of the same width, but the width may vary in real life), i would like, instead of. </p> <pre><code>-r1- -r2-- -r3-- -r4- -r5-- </code></pre> <p>something like.</p> <pre><code>-r1- -r3-- -r2-- -r4- -r5-- </code></pre> <p>All hints will be appreciated. I am not necessarily looking for "the" best solution.</p>