Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
10answers
2k views

How to fill a square with smaller squares/rectangles?

This is not a homework or interview question. In my office at work, we are not allowed to paint the walls, so I have decided to frame out squares and rectangles, attach some nice fabric to them, and ...
11
votes
2answers
138 views

Help on algorithm to place rooms on a limited space

I'm working on a small house design project and one of its most important parts is a section where the user can give some info about how he wants his rooms (for example, a house with 10 x 10 meters, ...
11
votes
4answers
890 views

Find the set of largest contiguous rectangles to cover multiple areas

I'm working on a tool called Quickfort for the game Dwarf Fortress. Quickfort turns spreadsheets in csv/xls format into a series of commands for Dwarf Fortress to carry out in order to plot a ...
11
votes
5answers
7k views

How to find the intersection point between a line and a rectangle?

I have a line that goes from points A to B; I have (x,y) of both points. I also have a rectangle that's centered at B and the width and height of the rectangle. I need to find the point in the line ...
10
votes
3answers
449 views

filling a rectilinear polygon with rectangles

Given a polygon, created entirely from rectangles, and defined by an array of points, where the edges are always aligned with the axis: I am trying to determine a quick algorithm to find a small ...
9
votes
3answers
652 views

How to find same-value rectangular areas of a given size in a matrix most efficiently?

My problem is very simple but I haven't found an efficient implementation yet. Suppose there is a matrix A like this: 0 0 0 0 0 0 0 4 4 2 2 2 0 0 4 4 2 2 2 0 0 0 0 2 2 2 1 1 0 0 0 0 0 1 1 Now I ...
8
votes
1answer
1k views

How to place and center text in an SVG rectangle

I have the following rectangle... <rect x="0px" y="0px" width="60px" height="20px"/> I would like to center the word "Fiction" inside of it. For other rectangles, does svg word wrap to stay ...
8
votes
2answers
2k views

Fast rectangle to rectangle intersection

What's a fast way to test if 2 rectangles are intersecting? A search on the internet came up with this one-liner (WOOT!), but I don't understand how to write it in Javascript, it seems to be ...
8
votes
3answers
6k views

WPF rectangle - round just top corners

How can I have just the top corners rounded for a WPF rectange? I created a border and set the CornerRadius property and inside the border I've added my rectangle, but it doesn't work, the rectangle ...
6
votes
3answers
219 views

Largest rectangular sub matrix with the same number

I am trying to come up with a dynamic programming algorithm that finds the largest sub matrix within a matrix that consists of the same number: example: {5 5 8} {5 5 7} {3 4 1} Answer : 4 elements ...
6
votes
2answers
249 views

rectilinear polygon intersection

I am looking for / trying to develop an optimal algorithm for rectilinear polygon intersection with rectangles. The polygons I am testing do not have holes. Answers like those given here and here ...
6
votes
2answers
400 views

Finding rectangles in a 2d block grid

Let's say I have a grid of blocks, 7x12. We use the colors '*','%','@' and an empty cell '-'. 1 2 3 4 5 6 7 - - - - - - - 1 - - - - - - - 2 % % - - - - - 3 % % - - - - * 4 % % - - - @ % 5 @ @ @ ...
6
votes
4answers
448 views

Given a set of rectangles, find 3 bounding rectangles with the smallest area

I am trying to implement redraw regions with up to 3 regions but can't think of an efficient way to find the best set of regions given a set of rectangles. So there would be a set of rectangles and I ...
6
votes
8answers
414 views

Algorithm required to determine if a rectangle is completely covered by another set of rectangles

I am searching for an algorithm that will determine if a new rectangle is completely covered by a set of existing rectangles. Another way of putting the question, is does the new rectangle exist ...
6
votes
2answers
224 views

How can I reduce a grid of equal sized squares to a minimum set of rectangles?

If I have an arbitrary sized grid of equal sized squares (with no spacing between them), I need to know an efficient way to reduce these into a minimum number of rectangles, for example if each ...
6
votes
3answers
11k views

Draw Rectangle with XNA

Hey guys, I was working on game, and wanted to highlight a spot on the screen when something happens, I created a class to do this for me, and found a bit of code to draw the rectangle static private ...
5
votes
4answers
84 views

how to collapse whitespaces in a region?

Let's say I have this tabulated text file: field1 variable_length_field variable_length_field aaaaaa aaaa aaaaaaaaa bbbbbb bbbbbbbbbbbbbbbbbbbb bbbb ...
5
votes
2answers
181 views

Affine Transform, Simple Rotation and Scaling or something else entirely?

The scenario goes like this: I have a picture of a paper that I would like to do some OCR. So take the image below as my input example: After successfully detecting the area that corresponds to the ...
5
votes
1answer
440 views

Concave quadrilateral from rectangle

Using only CSS, can a quadrilateral with an inner angle that is greater than 180 degrees be created by manipulating a single rectangle? I know that an arbitrary convex quadrilateral can be created ...
5
votes
2answers
524 views

Algorithm for finding the fewest rectangles to cover a set of rectangles

I have a set of rectangles and I would like to "reduce" the set so I have the fewest number of rectangles to describe the same area as the original set. If possible, I would like it to also be fast, ...
5
votes
2answers
294 views

How do negative-sized rectangles intersect?

Can someone explain why negatively sized Rectangles intersect the way they do? var r = new Rectangle(0, 0, 3, 3); var r0 = new Rectangle(0, 0, -1, -1); var r1 = new Rectangle(1, 1, -1, -1); var r2 ...
5
votes
1answer
210 views

How to check if any point (or part) of a line is inside or touches a rectangle

I want to check if a line (or any point of a line) is within a rectangle or intersects a rectangle. I have (x0, y0) and (x1, y1) as starting and ending points of a line. Also, (ax,ay) and (bx,by) as ...
5
votes
4answers
672 views

Maximum packing of rectangles in a circle

I work at a nanotech lab where I do silicon wafer dicing. (The wafer saw cuts only parallel lines) We are, of course, trying to maximize the yield of the die we cut. All the of die will be equal size, ...
5
votes
1answer
915 views

Make an image fit in a rectangle

If I have an image of which I know the height and the width, how can I fit it in a rectangle with the biggest possible size without stretching the image. Pseudo code is enough (but I'm going to use ...
5
votes
4answers
4k views

Easiest way to rotate a rectangle

I'm using rectangles defined in terms of their x y coordinates and their width and height. I figured out how to rotate them in terms of coordinates (x = cos(deg) * x - sin(deg) * y y = sin(deg) * x + ...
5
votes
5answers
3k views

Test if point is in some rectangle

I have a large collection of rectangles, all of the same size. I am generating random points that should not fall in these rectangles, so what I wish to do is test if the generated point lies in one ...
5
votes
5answers
1k views

Find the corners of a deformed rectangle

I am trying to make a program that automatically corrects the perspective of a rectangle. I have managed to get the silhouette of the rectangle, and have the code to correct the perspective, but I ...
4
votes
1answer
109 views

Why doesn't with…do statement and rectangle work together flawlessly?

Lately, I have been noticing that anytime I use Rectangle variable with With...do statement, it doesn't work at all for some reason. For instance: var bounds:=new Rectangle(0,0,0,0); with bounds do ...
4
votes
2answers
368 views

Rotate a Java Graphics2D Rectangle?

I have searched everywhere and I just cant find the answer. How do I rotate a Rectangle in java? Here is some of my code: package net.chrypthic.Space; import javax.swing.*; import java.awt.*; import ...
4
votes
1answer
195 views

DrawFocusRect with given aspect ratio in Delphi

I want to be able to draw a FocusRect on an image, which keeps the aspect ratio of the image. My problem is, that the FocusRect only depends on the y coordinates of the mouse. I just don't know how to ...
4
votes
2answers
314 views

Qt round rectangle, why corners are different?

I try to draw a round rectangle with drawRoundedRect method directly in a QPixmap (no render engine involve here exept pure Qt one ...), I double check the size of the rectangle versus the size of my ...
4
votes
3answers
226 views

Split a rectangle into equal sized rectangles?

I need to split a rectangle (A CGRect structure which is {{float x,float y},{float w,float h}}) into a number of smaller rectangles/structures, creating some sort of a grid. I'm writing a window ...
4
votes
4answers
384 views

Rounded Rectangle Not Accurate

Every sample code I've ever found for drawing rounded rectangles using GDI+ goes something like this (lifted and slightly modified from BobPowell.net): Private Sub Panel1_Paint(ByVal sender As ...
4
votes
2answers
374 views

JavaScript Merge Intersecting Rectangles

I need a way to merge an array of rectangle objects (objects with x,y,w,h properties) only if they intersect. So for example: merge([{x:0, y:0, w:5, h:5}, {x:1, y:1, w:5, h:5}]) would return: [{x:0, ...
4
votes
1answer
435 views

Fill text inside rectangle

I'm using GDI+ to draw a string on a Graphics object. I want the string to fit inside a pre-defined rectangle (without breaking any lines) Is there's anyway of doing this besides using ...
4
votes
1answer
3k views

Displaying rectangles in game window with XNA

I want to divide my game grid into an array of rectangles. Each rectangle is 40x40 and there are 14 rectangles in every column, with a total of 25 columns. This covers a game area of 560x1000. This ...
4
votes
2answers
1k views

Are any of these quad-tree libraries any good?

It appears that a certain project of mine will require the use of quad-trees, something that I have never worked with before. From what I have read they should allow substantial performance ...
4
votes
4answers
1k views

How do I scale one rectangle to the maximum size possible within another rectangle?

I have a source rectangle and a destination rectangle. I need to find the maximum scale to which the source can be scaled while fitting within the destination rectangle and maintaining its original ...
3
votes
4answers
104 views

How can I kill a rectangle of text in Emacs if the first and last lines are not long enough?

In Emacs, I sometimes want to kill or copy a rectangle of text such as this one: XX first line XX second line is longer XX 3rd line short I want to copy the three lines without the leading "XX" on ...
3
votes
2answers
114 views

SQL: Finding filled rectangles given x,y co-ordinates

Given the following filled x, y coordinates: 0, 0 0, 1 0, 2 1, 0 1, 1 1, 2 2, 0 2, 1 2, 2 4, 0 4, 1 5, 0 5, 1 How do I write an SQL query to determine all the filled rectangles? A rectangle is ...
3
votes
3answers
125 views

Calculate Width and Height from 4 points of a polygon

I have four points which form a rectangle, and I am allowing the user to move any point and to rotate the rectangle by an angle (which rotates each point around the center point). It stays in ...
3
votes
3answers
73 views

Are extension methods the solution to this problem?

In my program the source rectangle for drawing can either be a regular rectangle, an empty rectangle, or a rectangle with an X or Y of -1. If the rectangle is normal (example being (0, 0, 64, 64)) ...
3
votes
1answer
118 views

Getting A Window's Region

I am trying to a get a window's height and width using this : [DllImport("User32.dll", SetLastError = true)] [return: MarshalAs(UnmanagedType.Bool)] private static extern bool ...
3
votes
2answers
148 views

emacs: Change case of a rectangle

What would be simplest way to change the case of a rectangle? None of the short-cuts mentioned in the manual talk about this. Do I have to add a custom binding to do that? And while we are at it, ...
3
votes
4answers
207 views

Rectangle intersect code - Is this right?

Can someone tell me whether my rectangle intersect code is correct? bool checkCollide(int x, int y, int oWidth, int oHeight, int x2, int y2, int o2Width, int o2Height) { bool ...
3
votes
1answer
132 views

Compressing list of rectangles

I have an unsorted list of rectangles (described as pair of lower left and upper right coordinates). I am looking for an efficient algorithm to compress this list by replacing neighboring or ...
3
votes
2answers
475 views

What's an elegant algorithm for fitting differently sized rectangles into a circle?

I have a bunch of rectangles of variable size which I need to fit together roughly into a circle, presumably with the largest ones at the center. NB. The circle is not of a fixed size - that's just ...
3
votes
1answer
392 views

Top-left point of rotated RectangleGeometry in C#

I'm given the rotated RectangleGeometry and I need to find the top-left and bottom-right points. What would be the fastest way to accomplish that? Please notice, that I don't want these points for ...
3
votes
1answer
448 views

Merge (Boolean Union) rectangular regions with integer accuracy

Given any number of intersection, disjoint and touching rectangles, how to find the (multiple) outline polylines? Rectangles are defined in pixel coordinates so they have integer accuracy, but they ...
3
votes
3answers
1k views

Collision Detection - Java - Rectangle

I would like to know if this is a good idea that conforms to best practices that does not lead to obscenely confusing code or major performance hit(s): Make my own Collision detection class that ...

1 2 3 4 5 7