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 …
0
votes
2answers
68 views
How can i check if 2 controls overlap eachother on a canvas in WPF?
I am writing a designer that enables the user to drag controls around the screen.
What would be the best way of detecting if a control is overlapping another control while i am dra …
0
votes
4answers
126 views
How to avoid overlapping polygon
I created a program to draw many polygons automatically everytimes user presses a button. The points of the polygon are generated automatically using the random function. The probl …
0
votes
2answers
479 views
CSS Float border overlap issues
I'm trying to float a menu to the left of the page, and when it gets large enough to reach the content below, Firefox bumps the content over exactly as it should... except for the …
1
vote
3answers
200 views
How to calculate the area of multiple overlapping right-angled polygons?
I am looking for a way to calculate the common areas covered by multiple overlapping polygons. The polygons are all right-angled, if that helps makes things easier.
So for example …
0
votes
3answers
165 views
Safari issues with javascript + css
I have some strange behavior going on with safari, im using the jQuery.GridLayout plugin and css for styling.
Just for some context, this website layout is a simple header followe …
1
vote
1answer
83 views
How do I partition datetime intervals which overlap (Org Mode clocked time)?
I have related tasks from two Org files/subtrees where some of the clocked time overlaps. These are a manual worklog and a generated git commit log, see below.
One subtree's CLOCK …
0
votes
3answers
151 views
Positioning Divs semi-randomly, without overlaps
I have a page which has DIVs which contain short phrases (one-two words) of varying font sizes, which need to be positioned left-to-right according to a numerical parameter, and ve …
0
votes
1answer
77 views
intersect time intervals and generating new ones depending on intersect-results
hi there,
i've got two tables with time intervals and some settings for each interval, eg
2009-01-01T06:00:00 2009-01-04T14:00:00 1 0
2009-01-04T22:00:00 2009-01-07T06:00:00 …
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 …
0
votes
4answers
97 views
Flash playing SWF, video is normal sound is sped up half way on 4th scene
when i play each individule scene as an SWF all the sounds are synced correctly, but it when i play the entire animation that half way through on scene 4 the sounds play too early …
1
vote
5answers
349 views
Calculating the area(s) of a rectangle that aren’t being overlapped
I've got two rectangles represented by structures that contain the x1, y1, x2, y2 coordinates. One rectangle can be considered the parent, another the child.
I already know how to …
1
vote
3answers
123 views
Arrange labels for objects in 2D space without overlap
I need to attach text labels to objects that are spread randomly across the screen and keep moving.
The default and ideal position for a label is on the right side of the object i …
2
votes
7answers
2k views
Need generic div css that does not overlap (like a table)
I'm trying to use divs instead of tables to style boxes around my content. The content can be any size and needs to allow the browser to be resized to any degree. Need the backgr …
0
votes
0answers
181 views
Transparent iframe ontop of pdf in iframe
I have found the technique of putting iframes on top of an iframes to get round the z-index problem browsers have with iframes.
The problem I am facing now is I need the the ifram …
