4
votes
2answers
82 views
Algorithm to reduce image to rectangles?
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.
Now, …
0
votes
2answers
97 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 integer points if and only …
7
votes
3answers
165 views
What’s a good, simple, 2D rectangles-only collision detection algorithm?
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.
The requirements are very simple. The world is 2D and …
1
vote
2answers
261 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.IntersectsWith(rect2))
…
2
votes
6answers
290 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 proportion.
I know what the …
1
vote
1answer
189 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 having trouble …
1
vote
2answers
164 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 been rotated, I …
0
votes
2answers
137 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 stackoverflow
Given this …
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 rectangles will exist …
1
vote
3answers
171 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-overlapping rectangles …
1
vote
4answers
209 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.
6
votes
5answers
572 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 practical …
4
votes
3answers
549 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 algorithm that can find a …
3
votes
4answers
370 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 to produce a list of …
1
vote
1answer
244 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") parameters: x, y, width, …
