1
vote
2answers
236 views
Finding the overlapping area of two rectangles (in C#)
Edit:
Simple code I used to solve the problem in case anyone is interested (thanks to Fredrik):
int windowOverlap(Rectangle rect1, Rectangle rect2)
{
if (rect1.In …
2
votes
6answers
274 views
How to optimize the layout of rectangles
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 proporti …
1
vote
2answers
156 views
Calculating vertices of a rotated rectangle
Hey guys, I am trying to calculate the vertices of a rotated rectangle (2D).
It's easy enough if the rectangle has not been rotated, I figured that part out.
If the rectangle has …
0
votes
2answers
129 views
Vector math and rectangles
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 stack …
8
votes
14answers
3k views
Determine if two rectangles overlap each other?
Hi folks,
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 rec …
1
vote
1answer
184 views
Having trouble initializing an SDL_Surface
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 …
0
votes
1answer
71 views
Smallest set of rectangles describing a set of integer points
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 intege …
3
votes
4answers
358 views
How to divide a set of overlapping ranges into non-overlapping ranges?
Let's say you have a set of ranges:
0 - 100: 'a'
0 - 75: 'b'
95 - 150: 'c'
120 - 130: 'd'
Obviously, these ranges overlap at certain points. How would you dissect these ranges …
1
vote
4answers
203 views
How to check whether a NSPoint lays inside a NSRect
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.
4
votes
3answers
523 views
Finding an axis-aligned rectangle inside a polygon
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 algorit …
6
votes
5answers
552 views
How to divide an area composed of small squares into bigger rectangles?
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?
In a more …
1
vote
3answers
166 views
What’s the best way to draw a bunch of (~200) colored rectangles in Cocoa?
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-overla …
1
vote
1answer
229 views
Graphics.DrawRectangle(Pen, RectangleF)
http://msdn.microsoft.com/en-us/library/system.drawing.graphics.drawrectangle.aspx
FillRectangle, DrawRectangle, FillElipse and DrawEllipse all can take 4 Float (or "Single") para …
5
votes
5answers
359 views
Packing rectangles for compact representation.
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 compa …
0
votes
1answer
471 views
In SSRS, can you set a rectangle to grow with its contents?
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. Basicall …
