A rectangle is a geometric shape: any quadrilateral with four right angles

learn more… | top users | synonyms

-3
votes
1answer
23 views

Python : How to compute area intersection of several rectangles? [closed]

I want to find a fast way to compute the area overlap of several rectangles defined by (x0,y0,x1,x2) in python I tried in combining all intersect but I hope there is a more efficient solution ...
0
votes
1answer
17 views

Translate a rectangle in canvas

I am unable to clear a rectangle completely using clearRect method which is being translated on canvas across X direction. The problem can be seen live at JS Bin - Link to demo JS code (function() { ...
1
vote
0answers
17 views

Check if point is inside a rotated rectangle (with different rectangle origins)

How can I check if a point is inside a rotaded rectangle when the rectangle can have different origins? This is basically what i'm using now: struct Point { float x; float y; }; struct ...
-1
votes
1answer
24 views

Set Background Image for RectangleGeometry in WPF?

I have this code: <Path Fill="Brown"> <Path.Data> <RectangleGeometry x:Name="rec" RadiusX="0" RadiusY="20" Rect="410,135,60,25"></RectangleGeometry> ...
1
vote
4answers
31 views

Creating Multiple Rectangle Objects at Once (Java)

First off, thanks for just clicking this :) I'm an amateur student coder, and I'm creating a (horrible) version of Pacman. I'm trying to create rectangles for each of my dots on my 1000x650 applet ...
1
vote
0answers
30 views

Checking collision between Rectangle and Shape

In my game the player uses a Rectangle for his bounding box, he can do this because I only need to rotate the player image and not the acctual rectangle but for a eletric beam that one of the bosses ...
0
votes
1answer
43 views

Rectangle is not drawn at its original coordinates

I am facing problem while creating a CustomView which draw a Rectangle and can re-size by its corners. Following is my code. public class CustomView extends View { Canvas canvas; private ...
1
vote
2answers
34 views

How to handle collision after detecting it

I've been trying for the past few days to put simple collision into my simple game. I've looked in lots of places all over the internet but I just haven't found anything to be helpful. I'm just using ...
0
votes
2answers
31 views

How to define a custom Rectangle class driven from the Rectangle class?

I have already coded a custom made RichTextBox class in WPF. but I need to have a tiny Rectangle on the top-left corner of this RichTextBox, in order that I can use it as a dragging handle whenever I ...
0
votes
2answers
49 views

How do you find the verticies of a rotated rectangle from its center?

I have a rectangle that I've rotated around its center by an angle. How can I derive the verticies from the rectangle?
-3
votes
1answer
35 views

Find the boundary of a polygon (or a staircase) c++ [closed]

I'm doing an 2D bin packing algorithm. The goal is to put a set of rectangle into a bin one by one. At each rectangle insertion, i want to update the boundary between occupied area and free area. ...
0
votes
1answer
24 views

What is the best way to convert from a RectF to a Rect in Android?

I would like to convert from a RectF to a Rect in Android. Currently I have: RectF rectF = new RectF(); rectF.set( ... some values ... ); ... Rect rect = new Rect((int)rectF.left, ...
0
votes
2answers
68 views

Draw on MSChart control

I've got a simple line graph and I'd like to highlight some parts of this graph by drawing a rectangle around the line (ideally a filled rectangle with transparency...). I haven't any idea if this is ...
0
votes
2answers
113 views

Maximal rectangle algorithm

this is a question concerning a school assignment. We had to use an algorithm to find the biggest possible rectangle with 0s in a matrix with 0's and 1's I opted for a brute force algorithm as the ...
0
votes
1answer
26 views

Get New Points from Angle Android

I am trying to make a Re-sizable touch view which I made successfully. You can find code How to make view resizable on touch event. It has 4 corners. You can re-size that rectangle by dragging one ...
0
votes
1answer
26 views

Rotating a Rectangle from any point

I'm trying to write a script (javascript) in an API of a Virtual Table Top program so I can manipulate some tokens (Car Wars :)). I'm sort of finding the answer, but it seems like I'm struggling and ...
-1
votes
1answer
47 views

c# rectangle intersect wrong result point

i have 2 rectangles, i want to know left top point of intersect + width & height //image Rectangle rectangle1 = new Rectangle(121, 74, 614, 240); //crop area Rectangle rectangle2 = new ...
-1
votes
0answers
30 views

Draw an ArrayList of Rectangles

I am trying to draw an ArrayList of Rectangles on a JFrame. Here is the following code I have so far: public class YarsShipPanel extends JPanel implements ActionListener { private Timer t; ...
0
votes
3answers
41 views

How do I get multiple rectangular thumbnail sizes in Wordpress?

This may sound like a silly question but I've struggled to find the answer elsewhere. I'm trying to get a few different (rectangular) sizes of thumbnail on my Wordpress.org homepage. Currently all I ...
0
votes
1answer
33 views

Problems creating panel with multiple rectangles

I am trying to create a panel that shows the history of some "maps" we store. The earliest at the top, followed by those later with extra information at times. The main code for HistoryGraph thus far ...
-2
votes
0answers
43 views

How do I make custom buttons using Swing that respond to mouse button? [closed]

During a LD stream, I started discussing Swing GUI with another guy in the chat. He told me that he disliked Swing so much that he made custom buttons with rectangles that respond to mouse clicks. He ...
0
votes
1answer
58 views

How to get the last value that an integer had before an method were executed

I have two squares that moves around on the screen, both of the squares are from the same class (it's the same square that was drawn two times). I have already figured out how to do the collision ...
1
vote
2answers
75 views

How to shear rectangle without moving it?

I'd like to ask whether it is possible to shear object without actually moving it. Here's the code I'm doing it right now Matrix matrix = new Matrix(); matrix.Shear(2, 0); ...
5
votes
4answers
113 views

Given many horizontal and vertical lines, how to find all the rectangles that do have any sub-rectangle inside them?

I have many horizontal and vertical lines which make up rectangle such as in this example. Is there an algorithm or code which can locate every rectangle which does not contain another rectangle. I ...
0
votes
0answers
43 views

Java/Lwjgl 2D rotated rectangle collision response

I've been working on this project for quite some time, and I'm running into issues with the execution of the code, or perhaps the physics. I could really use some help, as this is for my high school ...
0
votes
2answers
32 views

JavaFX2.x Rectangle rounded corners are not shown

Just a little problem, but I don't know how to fix it and Papa google couldn't help either. I am drawing a rectangle with javafx2 and I want to have rounded corners. However the rectangle is shown ...
0
votes
0answers
29 views

Draw Rectangle save to rectangles array with Attributes

I need to draw a rectangle on a C# winform picturebox. When rectangle is drawn I need to save the rectangle to a rectangles array. Needs to also be able to store meta data with the rectangle like ...
0
votes
0answers
56 views

Why is my paint not working?

I am trying to draw a grid of squares in android to test my tetris game and for now i just want all the squares to come out blue on the screen just to test the color. But i cant get it to work its ...
0
votes
1answer
49 views

Thin lines appears between rectangles when the grid control is used to tile them together for windows phone

Below code will show thin lines between the tiled rectangles on the windows phone. I tried setting UseLayoutRounding to true but does not seem to do anything. There are more thin lines when code is ...
0
votes
1answer
78 views

Flash Collision Detection (Platformer game)

I am trying to make a platformer game in flash, using ActionScript 3. Currently everything is working except for one thing. The Problem: When the player collides with the bottom of a platform, if ...
0
votes
1answer
147 views

need help fixing minor issues in my program [closed]

So here is my code: #include <iostream> #include <string> #include <vector> using namespace std; class Point { private: double px; double py; public: void setX(const ...
-1
votes
1answer
44 views

Using rectangle in Matlab. Using Sum()

I have performed rgb2gray on an image and did a sobel edge detection on the image. then did faceEdges = faceNoNoise(:,:) > 50; %binary threshold so it sets the outline of the image (a ...
0
votes
1answer
30 views

How to stop a Google map from drawing a second rectangle after a button is clicked

I am using a the following code to draw a rectangle on the map to a random lat. & long. based on a city name when a find button is clicked. The problem is if you do not put a different city name ...
0
votes
1answer
41 views

Center en resize String on a rectangle

I'm painting a rectangle on which I draw a String. This String should be centered (that works) but also resized so "all" Strings fit on this rectangle. The centering works but I'll include it anway ...
2
votes
2answers
93 views

How do I see if two rectangles intersect in javascript or pseudocode?

I have two rectangles which I must return in a function whether they intersect or not. They are represented by [ x0,y0, x1,y1 ] pairs that represent the top-left and bottom-right corner of the ...
0
votes
2answers
67 views

Easy Rotated Rectangle Collision

I'm making a game using LibGDX, but I have run into a problem concerning rectangle collision detection. public class Rectangle{ final float width = 1f; final float height = 0.5f; Point ...
0
votes
0answers
47 views

EMGU CV MCvBox2D.GetVertices gives different order of corners

I'm using EMGU CV for my project and I'm facing a weird problem. I use cannyedges to find some squares in a photo. This is working correctly. After that i want to take a pixel inside each square and ...
0
votes
1answer
29 views

Rectangle.Intersects(Rectangle)-Code

I think you know all the Rectangle.Intersects(Rectangle)-Method (returns boolean) in C# for example. Because I switched to plattform that doesn't has something like that, I try to make somwhink like ...
-3
votes
1answer
91 views

Create rectangles with text on my gui, Java [closed]

I need a way to populate my window with rectangles that have simple text in them. I created myself a linked list, and I want each node to be represented by a rectangle, one after the other. How ...
2
votes
1answer
72 views

Where can I find the source for Android home screen widget layout?

Today I had my first time with Android 4.2, and I noticed how the home screen automatically repositions widgets as you drag them: I recently worked on a similar code for our project, and I have ...
0
votes
1answer
88 views

Draw rectangle C# Mouse_down working Mouse_up not

I want to draw an rectangle on an form the mouse_down event is working fine, but how do i programm the mouse_up. Should how do i dertermine the starting coordinates. ...
0
votes
1answer
75 views

Cant Draw Rectangle

I am trying to just make a simple game, but for the game to work I need to be able to draw a rectangle. I added the paint method and told it to draw a rectangle and it didnt work. can someone please ...
0
votes
1answer
45 views

Processing Code does not work

I started programming with Processing today and wrote a little programm that creates 10 random rectangles Now I like to make them disappear when the mouse is over them, but my actual code is not ...
-2
votes
1answer
95 views

How to check if two rectangles are adjacent in java [closed]

I am writing a platform game. Here is my problem; I have two rectangles, one named as block, and the other named as entity. What I am trying find out whether the rectangles are adjacent; and if they ...
0
votes
1answer
56 views

SVG Shapes and Text Drag and Drop [closed]

I am trying to make an SVG shape with text draggable, and although I made it draggeble the text remains a separate entity from the shape. Can the text and the shape be made one so that I can drag them ...
0
votes
1answer
94 views

Rectangle - Emgu CV

i'm trying to distinguish circular and rectangular objects from an image. i've labeled the round ones, using contours and the formula: metric = 4*pie*contour.Area / (contour.perimeter^2) since i'm ...
1
vote
2answers
60 views

Gaps Between Rectangles Connected at the Center

I'm experimenting with a vector based graphics style with objects represented as series of line segments with a given width(it would probably be easier to think of these as rectangles). The problem is ...
0
votes
1answer
61 views

Efficiency of drawing rectangles on image matrix in R

I have the function drawRect which will draw a rectangle on a n x m x 3 matrix (one layer for each color channel). It takes in 2 main parameters: the rectangle params c(xleft, xright, ytop, ybottom) ...
0
votes
1answer
59 views

How to determine what rectangle is on top?

I currently have a program that draws overlapping rectangles and was wondering if there is an easy way to determine which shape is on the top (most visible). This has me stumped as there is no z axis ...
-1
votes
2answers
94 views

Half Rounded rectangle in C# Path

I've got question, I have rounded rectangle. It's only rounded on right side, and straight on left. I want to make that in other way - left rounded, right straight. What should I change? int ...

1 2 3 4 5