active questions tagged overlap - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T05:16:03Zhttp://stackoverflow.com/feeds/tag/overlaphttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1827772/itextsharp-table-text-overlapping0itextsharp table text overlappingJohn Walker2009-12-01T17:44:28Z2009-12-02T10:06:50Z
<p>Hi,</p>
<p>A website im working on creates a pdf document using itextsharp xml but for some reason when content in a table row is split between two pages the content is falling into the next column and overlapping on the next page. Has anyone come across this issue before and if so any fizes?</p>
<p>Any help would be much appreciated.</p>
<p>John</p>
http://stackoverflow.com/questions/1825806/javascript-trigger-a-function-when-two-divs-touch-overlap0JavaScript: Trigger a function when two divs touch / overlap. Jack2009-12-01T12:12:38Z2009-12-01T12:53:02Z
<p>The title explains it really. How to do this? Both divs are of differing size. Both divs are moving (I'm making a little Jquery game). If one hits the other, I want stuff to happen.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1823482/ie7-overlapping-divs0IE7 Overlapping DivsZach2009-12-01T01:24:28Z2009-12-01T01:24:28Z
<p>While working to create a simple module, I ran into an issue with IE7 and its apparent desire to overlap elements. Here is my HTML code sample with CSS:</p>
<pre><code><style type="text/css">
body {
padding: 200px;
}
.description {
padding: 60px;
background-color: green;
clear: both;
}
.middlebar {
background-color: gray;
}
.line {
background-color: blue;
clear:both;
}
.hey {
background-colodr: red;
}
</style>
<body>
<div class="middlebar">
<div class="line">
<div class="description">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce at dolor diam. Aliquam sit amet massa turpis. Suspendisse cursus augue lacus. Suspendisse non velit neque. Nulla aliquam euismod lacinia. Etiam sollicitudin commodo eros, et tincidunt eros consequat lobortis. Proin mollis nisi a arcu euismod at commodo orci rhoncus. Proin sollicitudin erat est, vel mollis dolor. In leo erat, pretium nec bibendum eu, ornare eget diam. Nulla cursus arcu at lacus aliquam pellentesque. Nullam et metus purus, et rhoncus erat. Phasellus ornare elementum neque laoreet tincidunt.
</div>
</div>
</div>
</div>
<div class="hey">
Hey<br>
Hey
</div>
</body>
</code></pre>
<p>Removing the div with class "line" will fix the problem. Adding an extra div will only alter the issue, resulting in a different div overlapping just a single line of the "hey" div at the bottom.</p>
<p>I have already found the fix, as mentioned above, but am seeking a technical explanation to the problem.</p>
http://stackoverflow.com/questions/1275641/css-float-border-overlap-issues0CSS Float border overlap issuesHyperHacker2009-08-14T01:45:59Z2009-11-08T05:00:04Z
<p>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 border. See screenshot with
hxxp://img35.imageshack.us/img35/2491/59035319.png - few items, and then
hxxp://img195.imageshack.us/img195/3341/failktq.png - several items. (Gee sure is nice of you guys to make it difficult to explain my problem V_v)
"Box 4" gets moved over as expected, but its border stays at the left. O.o</p>
<p>HTML:<pre>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title></title>
<link rel="stylesheet" href="css/main.css" />
</head>
<body>
<div id="menu">
<ul>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
</ul>
</div>
<div id="title">
<img src="img/logo.png" alt="logo" />
<span id="title_text">Title</span>
</div>
<div id="container">
<div id="box1" class="topbox">
<div class="title">Box 1 Title</div>
<div class="content">Content goes here</div>
</div>
<div id="box2" class="topbox">
<div class="title">Box 2 Title</div>
<div class="content">Content goes here</div>
</div>
<div id="box3" class="topbox">
<div class="title">Box 3 Title</div>
<div class="content">Content goes here</div>
</div>
</div>
<div id="box4">
<div class="title">Box 4 Title</div>
<div class="content">Content goes here<br />line break</div>
</div>
</body>
</html></pre></p>
<p>CSS:</p>
<pre><code>#menu {
float: left;
width: 100px;
padding-left: 0px;
}
#menu ul {
margin: 0px;
padding: 10px;
}
#title {
margin-left: 100px;
border: 1px #F00 dashed;
height: 40px;
font-size: 20pt;
}
#title_text {
display: inline-block;
vertical-align: top;
margin-top: 5px;
}
#container {
margin-left: 100px;
}
.topbox {
width: 30%;
height: 200px;
display: inline-block;
margin-top: 5px;
margin-bottom: 10px;
margin-right: 2px;
margin: none;
border: 1px #F00 solid;
}
.topbox .title {
text-align: center;
border-bottom: 1px #000 solid;
padding-top: 1px;
}
.content {
padding: 2px;
}
#box4 {
border: 1px #000 solid;
width: 100%;
}
#box4 .title {
display: inline;
border-right: 1px #000 solid;
border-bottom: 1px #000 solid;
padding-left: 2px;
padding-right: 2px;
}
#box4 .content {
display: inline;
}
</code></pre>
http://stackoverflow.com/questions/838026/flash-playing-swf-video-is-normal-sound-is-sped-up-half-way-on-4th-scene0Flash playing SWF, video is normal sound is sped up half way on 4th sceneTrina2009-05-08T02:50:39Z2009-10-21T20:30:21Z
<p>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 and are also sped up about 2X regular speed. how can i fix this?</p>
http://stackoverflow.com/questions/1248372/intersect-time-intervals-and-generating-new-ones-depending-on-intersect-results0intersect time intervals and generating new ones depending on intersect-resultsNico2009-08-08T08:45:49Z2009-10-19T04:00:02Z
<p>hi there,</p>
<p>i've got two tables with time intervals and some settings for each interval, eg</p>
<pre><code>2009-01-01T06:00:00 2009-01-04T14:00:00 1 0
2009-01-04T22:00:00 2009-01-07T06:00:00 2 1
2009-01-07T06:00:00 2009-01-09T13:00:00 2 2
2009-01-09T22:00:00 2009-01-14T06:00:00 3 0
</code></pre>
<p>and </p>
<pre><code>2009-01-04T16:00:00 2009-01-05T01:00:00 2 0
2009-01-05T06:00:00 2009-01-06T14:00:00 1 1
2009-01-07T08:00:00 2009-01-10T16:00:00 1 0
</code></pre>
<p>result:</p>
<pre><code>2009-01-01T06:00:00 2009-01-04T14:00:00 1 0
2009-01-04T16:00:00 2009-01-06T14:00:00 1 1
2009-01-06T22:00:00 2009-01-07T06:00:00 2 1
2009-01-07T08:00:00 2009-01-10T16:00:00 1 0
2009-01-10T22:00:00 2009-01-14T06:00:00 3 0
</code></pre>
<p>the query i aim for should
- check each interval of table 2 with each interval of table 1
- include interval from table 1 in the result, if no interval of table 2 intersects or overlaps
- generate new intervals if intersection or overlapping is detected, regarding that if dataset from t1 intersected by t2 could be cutted and a smaller interval (not intersected by t2) should keep alive:</p>
<pre><code>t1: 2009-01-01T06:00:00 2009-01-10T14:00:00
t2: 2009-01-03T08:00:00 2009-01-09T16:00:00
</code></pre>
<p>sould result in</p>
<pre><code>2009-01-01T06:00:00 2009-01-02T14:00:00
2009-01-03T08:00:00 2009-01-09T16:00:00
2009-01-10T06:00:00 2009-01-10T14:00:00
</code></pre>
<p>intervals in t1 and t2 are continous intervals using one setting, each. they can be splitted in several intervals per original one, eg</p>
<pre><code>2009-01-01T06:00:00 2009-01-03T14:00:00 1 0
</code></pre>
<p>is the "compressed" result of the three intervals:</p>
<pre><code>2009-01-01T06:00:00 2009-01-03T14:00:00 1 0
2009-01-02T06:00:00 2009-01-02T14:00:00 1 0
2009-01-03T06:00:00 2009-01-03T14:00:00 1 0
</code></pre>
<p>compression is allowed, if time-parts are identical, as the setting-values should be.</p>
<p>thanks in advance for any hints!</p>
<p>edit: platform is sql server 2008.</p>
http://stackoverflow.com/questions/1554116/how-can-i-check-if-2-controls-overlap-eachother-on-a-canvas-in-wpf0How can i check if 2 controls overlap eachother on a canvas in WPF?Eli Perpinyal2009-10-12T11:50:27Z2009-10-12T15:16:20Z
<p>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 dragging the one control around?</p>
<p>Should i just get the dimensions of the FrameworkElement and keep on checking the dimensions of the other elements?</p>
<p>Thanks.
Eli</p>
http://stackoverflow.com/questions/1551243/finding-the-overlapping-area-of-two-rectangles-in-c1Finding the overlapping area of two rectangles (in C#)Evan2009-10-11T17:38:48Z2009-10-11T18:35:49Z
<p>Edit:</p>
<p>Simple code I used to solve the problem in case anyone is interested (thanks to Fredrik):</p>
<pre><code> int windowOverlap(Rectangle rect1, Rectangle rect2)
{
if (rect1.IntersectsWith(rect2))
{
Rectangle overlap = Rectangle.Intersect(rect1, rect2);
if (overlap.IsEmpty)
return overlap.Width * overlap.Height;
}
return 0;
}
</code></pre>
<p>Original Question:</p>
<p>I'd like to know a quick and dirty way to check if two rectangles overlap and if they do calculate the area of the overlap. For curiosities sake I'm interested in the case where 1) all the lines in both rectangles are either vertical or horizontal or 2) the general case for any two rectangles, but the only answer I really need is case 1.</p>
<p>I'm thinking along the lines of:</p>
<pre><code>double areaOfOverlap( Rect A, Rect B)
{
if ( A.Intersects(B) )
{
// calculate area
// return area
}
return 0;
}
</code></pre>
<p>For A.Intersects() I was thinking of using the separating axis test, but if the rectangles have only horizontal and vertical lines is there an even simpler (faster) way to check?</p>
<p>And for calculating the area where they intersect is there an quick way to do it if the rectangles only horizontal and vertical lines?</p>
<p>Finally, this is unrelated to the question but I'd appreciate any advice someone may have on a good book / webpage where I could review the math for computer graphics. I've been out of college for a while and feel like I'm forgetting everything :)! Anyone else have that problem?</p>
<p>( NOTE: I found this question different than <a href="http://stackoverflow.com/questions/244452/what-is-an-efficient-algorithm-to-find-area-of-overlapping-rectangles">this</a> which seems more complicated and doesn't directly answer the question. )</p>
http://stackoverflow.com/questions/1546143/how-to-avoid-overlapping-polygon0How to avoid overlapping polygonJessy2009-10-09T21:32:44Z2009-10-10T11:12:10Z
<p>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 problem is that, since the points of the polygon were randomly generated, some of the polygon are overlap with other polygon. How can I avoid this, so that every polygon shown without being overlapped? </p>
<pre><code>.....
List<Polygon> triangles = new LinkedList<Polygon>();
Random generator = new Random();
public void paintComponent(Graphics g) {
for(int i = 0; i < 10; i++) {
double xWidth = generator.nextDouble() * 40.0 + 10.0;
double yHeight = generator.nextDouble() * 40.0 + 10.0;
xCoord[0] = generator.nextInt(MAX_WIDTH);
yCoord[0] = generator.nextInt(MAX_HEIGHT);
xCoord[1] = (int) (xCoord[0] - xWidth);
xCoord[2] = (int) (xCoord[1] + (xWidth/2));
yCoord[1] = yCoord[0];
yCoord[2] = (int) (yCoord[1] - yHeight);
triangles.add( new Polygon(xCoord,yCoord, 3));
}
Graphics2D g2 = (Graphics2D) g;
g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
g2.setStroke(new BasicStroke(1));
g2.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_OVER, 1.00f));
g2.setPaint(Color.black);//set the polygon line
for (Polygon triangle : triangles) g2.drawPolygon(triangle);
Polygon[] triArray = triangles.toArray(new Polygon[triangles.size()]);
for (Polygon p:triArray) triangles.remove (p);
}
</code></pre>
http://stackoverflow.com/questions/1392951/safari-issues-with-javascript-css0Safari issues with javascript + cssMarvin2009-09-08T09:27:14Z2009-09-22T10:03:17Z
<p>I have some strange behavior going on with safari, im using the jQuery.GridLayout plugin and css for styling.</p>
<p>Just for some context, this website layout is a simple header followed by the content which are a collection of blocks (each block is a div) positioned by the javascript and rearranged every time the window is re-sized.</p>
<p>When I direct safari to the website url all the blocks overlap to some degree (like 50%) but as I re-size the window if they have to move, automatically all goes to the correct place and only breaks if I refresh the page.</p>
<p>So it seems that loading the page is messing it up either because something fails to register or because something does not happen until I re-size the window.</p>
<p>As anyone experienced such behavior within safari?</p>
<p>It works perfectly in firefox and opera, its an valid html 4.01 transitional page and the css is also validated (wc3 wise that is).</p>
<p>I know that publishing the code is invaluable to sort this kind of issues but this is a production project and I'm obliged not to it.</p>
<p>Either way I appreciate any advice on were to start looking?</p>
<p>How do one goes about debugging this issues in safari?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1447257/how-do-i-partition-datetime-intervals-which-overlap-org-mode-clocked-time1How do I partition datetime intervals which overlap (Org Mode clocked time)?Jeff Kowalczyk2009-09-18T23:55:09Z2009-09-19T17:51:36Z
<p>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.</p>
<p>One subtree's CLOCK: entries needs to be adjusted to remove overlapping time. The other subtree is considered complete, and it's CLOCK: entries should not be adjusted.</p>
<p><strong><em>EDIT: This question is about calculating new time intervals to remove any overlaps. Any suggestions don't need to parse the Org mode file format. Python datetime.datetime algorithms are helpful, as are Emacs Lisp with or without the use of Org mode functions.</em></strong></p>
<p>In Python (more familiar) or Emacs Lisp (Org functions could help) I would like to:</p>
<ol>
<li><p>Identify time overlaps where they
occur. file1.org will be mutable,
file2.org time intervals should be
considered fixed/correct.</p></li>
<li><p>Calculate new time intervals for
the CLOCK: lines in file1.org
to remove any overlap with
file2.org CLOCK: lines.</p></li>
<li><p>write resulting new CLOCK: lines
out, or at least the pertinent
datetimes.</p></li>
</ol>
<p>The python convenience function tsparse converts an Org Mode timestamp to a python datetime.datetime object:</p>
<pre><code>>>> from datetime import datetime, timedelta
>>> def tsparse(timestring): return datetime.strptime(timestring,'%Y-%m-%d %a %H:%M')
>>> tsparse('2008-10-15 Wed 00:45')
datetime.datetime(2008, 10, 15, 0, 45)
</code></pre>
<p>Test cases can be found below. Thanks for any algorithm or implementation suggestions for Python or Emacs Lisp.</p>
<p>Jeff</p>
<p><hr /></p>
<p><strong>file1.org</strong>, <em>prior to</em> adjustments:</p>
<pre><code>* Manually Edited Worklog
** DONE Onsite
CLOSED: [2009-09-09 Wed 15:00]
:LOGBOOK:
CLOCK: [2009-09-09 Wed 07:00]--[2009-09-09 Wed 15:00] => 8:00
:END:
** DONE Onsite
CLOSED: [2009-09-10 Wed 15:00]
:LOGBOOK:
CLOCK: [2009-09-10 Thu 08:00]--[2009-09-10 Thu 15:00] => 7:00
:END:
</code></pre>
<p><hr /></p>
<p><strong>file2.org</strong>:</p>
<pre><code>* Generated commit log
** DONE Commit 1 :partial:overlap:leading:contained:
CLOSED: [2009-09-09 Tue 10:18]
:LOGBOOK:
CLOCK: [2009-09-09 Wed 06:40]--[2009-09-09 Wed 07:18] => 0:38
CLOCK: [2009-09-09 Wed 10:12]--[2009-09-09 Wed 10:18] => 0:06
:END:
** DONE Commit 2 :contained:overlap:contiguous:
CLOSED: [2009-09-09 Wed 10:20]
:LOGBOOK:
CLOCK: [2009-09-09 Wed 10:18]--[2009-09-09 Wed 10:20] => 0:02
:END:
** DONE Commit 4 :contained:overlap:
CLOSED: [2009-09-10 Wed 09:53]
:LOGBOOK:
CLOCK: [2009-09-10 Wed 09:49]--[2009-09-10 Wed 09:53] => 0:04
:END:
** DONE Commit 5 :partial:overlap:trailing:
CLOSED: [2009-09-10 Wed 15:12]
:LOGBOOK:
CLOCK: [2009-09-10 Wed 14:45]--[2009-09-10 Wed 15:12] => 0:27
:END:
** DONE Commit 6 :partial:overlap:leading:
CLOSED: [2009-09-11 Fri 08:05]
:LOGBOOK:
CLOCK: [2009-09-11 Fri 07:50]--[2009-09-11 Fri 08:05] => 0:15
:END:
** DONE Commit 7 :nonoverlap:
CLOSED: [2009-09-11 Fri 15:55]
:LOGBOOK:
CLOCK: [2009-09-11 Fri 15:25]--[2009-09-11 Fri 15:55] => 0:30
:END:
</code></pre>
<p><hr /></p>
<p><strong>file1.org</strong>, <em>after</em> adjustments:</p>
<pre><code>* Manually Edited Worklog
** DONE Onsite
CLOSED: [2009-09-09 Wed 15:00]
:LOGBOOK:
CLOCK: [2009-09-09 Wed 10:20]--[2009-09-09 Wed 14:45] => 4:25
CLOCK: [2009-09-09 Wed 07:18]--[2009-09-09 Wed 10:12] => 2:54
:END:
** DONE Onsite
CLOSED: [2009-09-10 Wed 15:00]
:LOGBOOK:
CLOCK: [2009-09-10 Thu 08:05]--[2009-09-10 Thu 15:00] => 6:55
:END:
</code></pre>
http://stackoverflow.com/questions/1390656/how-to-calculate-the-area-of-multiple-overlapping-right-angled-polygons1How to calculate the area of multiple overlapping right-angled polygons?Martin2009-09-07T19:13:54Z2009-09-08T23:18:58Z
<p>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.</p>
<p>So for example:</p>
<pre>
BBBBB
BBBBB
AAA---BB
AAA---BB
AAAAAA
AA--AA
AA--AA
LL
LL
LLLLLL
LLLLLL
</pre>
<p>I would like to find the common area covered by A, B and L, which would equal:
B = 5x4 = 20 +
A = 6x5 = 30 +
L = 4x2 + 6x2 = 20
= 70
minus overlapping areas:
- 10 = 60 (common area covered by all polygons)</p>
<p>I need to be able to cater for situations where 3 or more polygons occupy the same area.
Is there a suitable algorithm for this, which could take arrays of arrays of x/y co-ordinates as inputs? (sample Java source code would be very welcome).</p>
http://stackoverflow.com/questions/1301186/positioning-divs-semi-randomly-without-overlaps0Positioning Divs semi-randomly, without overlapsRichard2009-08-19T16:44:18Z2009-08-20T05:55:21Z
<p>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 vertically so as not to overlap.</p>
<p>It's like a tag cloud, but there's information contained in the y-axis as well ("coolness" in this case - <a href="http://cool-wall.appspot.com" rel="nofollow">http://cool-wall.appspot.com</a>)</p>
<p>How should I lay these out? I'm currently using a very messy series of DIVs like this:</p>
<pre><code><div style="position:absolute; top:150px;left:10px;right:10px;bottom:10px">
<!-- then, repeated, with different top, left and font-size values -->
<div style="align:center; margin:0; border:none; padding:0; float:left; visibility:visible; position:absolute; top:21%; left:56%; font-size:11px">
<div style="margin-top:0%; margin-right:50%; margin-bottom:0%; margin-left:-50%;">
<a href="foo"><span style="display:inline"> &larr; </span></a>
<a href="bar"><span style="display:inline"> Buzz </span></a>
<span style="display:inline"> &rarr; </span>
</div>
</div>
<!-- of course, followed by a close div -->
</div>
</code></pre>
<p>I use a stylesheet to extract some of those styles, and I realise that it's pretty poor CSS (and HTML)... but this was all I could hack together to do (almost) what I wanted to do. The main problem with the above (apart from it being confusing) is that I can't set the positioning so it doesn't overlap, because I don't know what size the font will be, nor how it will display onscreen.</p>
<p>Happy to use JavaScript to get it right. But I don't know where to start. Any tips?</p>
http://stackoverflow.com/questions/903589/arrange-labels-for-objects-in-2d-space-without-overlap1Arrange labels for objects in 2D space without overlapTomA2009-05-24T11:35:13Z2009-07-20T22:20:19Z
<p>I need to attach text labels to objects that are spread randomly across the screen and keep moving.</p>
<p>The default and ideal position for a label is on the right side of the object it refers to. I need a way to dynamically rearrange (or possibly merge) the labels so that they never overlap each other or other objects.</p>
<p>They should still be as close to the objects as possible and should not, provided that the objects themselves move smoothly, show any suddent jerky movement.</p>
<p>I have no idea how to do it, is there an algorithm for something like this?</p>
http://stackoverflow.com/questions/1112837/overlapping-columns-with-ie70Overlapping Columns with IE7Paul2009-07-11T03:15:46Z2009-07-11T03:39:53Z
<p>I'm really having a hard time with IE7 as it is making part of my page fluid where it should be fixed. Works fine in every other browser but IE.</p>
<p>Here is the link... . If you shrink the window you will see how the page gets all skewed. </p>
<p>Here is the css used to control the 2 columns, <code>left_body</code> being the left content and <code>right_body</code> the right column.</p>
<pre><code>#left_body
{
float: left;
width: 900px;
}
#right_body
{
padding-right: 5px;
float: right;
width: 200px;
}
</code></pre>
http://stackoverflow.com/questions/306316/determine-if-two-rectangles-overlap-each-other8Determine if two rectangles overlap each other?Rob Burke2008-11-20T18:21:45Z2009-06-27T14:58:51Z
<p>Hi folks,</p>
<p>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 parallel to the x and the y axis, that is all of their edges will have slopes of 0 or infinity.</p>
<p>I've tried to implement what is mentioned in <a href="http://stackoverflow.com/questions/115426">this</a> question but I am not having very much luck.</p>
<p>My current implementation does the following:</p>
<pre><code>// Gets all the vertices for Rectangle 1 and stores them in an array -> arrRect1
// point 1 x: arrRect1[0], point 1 y: arrRect1[1] and so on...
// Gets all the vertices for Rectangle 2 and stores them in an array -> arrRect2
// rotated edge of point a, rect 1
int rot_x, rot_y;
rot_x = -arrRect1[3];
rot_y = arrRect1[2];
// point on rotated edge
int pnt_x, pnt_y;
pnt_x = arrRect1[2];
pnt_y = arrRect1[3];
// test point, a from rect 2
int tst_x, tst_y;
tst_x = arrRect2[0];
tst_y = arrRect2[1];
int value;
value = (rot_x * (tst_x - pnt_x)) + (rot_y * (tst_y - pnt_y));
cout << "Value: " << value;
</code></pre>
<p>However I'm not quite sure if (a) I've implemented the algorithm I linked to correctly, or if I did exactly how to interpret this?</p>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/1027948/transparent-iframe-ontop-of-pdf-in-iframe0Transparent iframe ontop of pdf in iframe Tim Jarvis2009-06-22T15:50:35Z2009-06-22T15:50:35Z
<p>I have found the technique of putting iframes on top of an iframes to get round the z-index problem browsers have with iframes.</p>
<p>The problem I am facing now is I need the the iframe that overlaps a PDF (loaded into an iframe) to be transparent. Is this possible??</p>
<p>The reason I want to do this is so I can have a transparent png over the top of the PDF</p>
<p>Below is some code so that you can see my problem - you will see a white square in the top left hand corner of the PDF.</p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<style type="text/css">
#contentFrame
{
height:500px;
width:990px;
}
#overlapFrame
{
width:100px;
height:100px;
position:absolute;
left:0;
top:0;
background: transparent;
}
</style>
</head>
<body>
<iframe src="http://www.education.gov.yk.ca/pdf/pdf-test.pdf" id="contentFrame" frameborder="0"></iframe>
<iframe id="overlapFrame" frameborder="0" scrolling="no"></iframe>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/942102/calculating-the-areas-of-a-rectangle-that-arent-being-overlapped1Calculating the area(s) of a rectangle that aren't being overlappedbeepboopbopbop2009-06-02T21:55:47Z2009-06-02T23:56:54Z
<p>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.</p>
<p>I already know how to detect if the child rectangle is within the parent rectangle; what I'm trying to figure out now is the simplest, fastest way to determine the rectangular areas within the parent that are not being overlapped by the child rectangle.</p>
<p>For example, consider a 100x100 parent rectangle, and a 50x50 child rectangle located exactly in the center of the parent. This would mean there would be four rectangles representing the four areas in the parent rectangle that aren't being overlapped by the child.</p>
<p>Of course, the child could be in the top left, top right, bottom left, bottom right corner, or a little to the left, a little to the right, etc... there might be one, two, three, or four rectangles that represent the non-overlapped areas.</p>
<p>I've had some ideas for implementations to figure this out, but all seem overly complex. Is there a simple, fast way to figure this out?</p>
http://stackoverflow.com/questions/723476/need-generic-div-css-that-does-not-overlap-like-a-table2Need generic div css that does not overlap (like a table)fcs2009-04-06T22:19:26Z2009-04-08T17:04:29Z
<p>I'm trying to use divs instead of tables to style boxes around my content. The content can be <strong>any size</strong> and needs to allow the browser to be <strong>resized to any degree</strong>. Need the background color and border to <strong>contain the content</strong>. This works fine with tables. How do I get a div to work the same way?</p>
<p>Note: I added "_"s because my non-breaknig spaces were getting lost.</p>
<p><a href="http://www.c3o.com/divonly.htm" rel="nofollow">Sample Page</a></p>
<p><a href="http://www.c3o.com/div-like-table.JPG" rel="nofollow">Sample image</a> </p>
<p><img src="http://www.c3o.com/div-like-table.JPG" alt="alt text" /></p>
<p>Content:</p>
<pre><code><style type="text/css">
div.box, table.box
{
padding: 10px 1000px 10px 10px;
}
div.box-header, td.box-header
{
border: solid 1px #BBBBBB ;
font-size: larger;
padding: 4px;
background-color: #DDDDDD;
}
div.box-body, td.box-body
{
padding: 6px;
border: solid 1px #BBBBBB ;
border-top: none;
}
</style>
<div class="box">
<div class="box-header">please_help_make_these_divs_stop_overlapping</div>
<div class="box-body">please_help_make_these_divs_stop_overlapping</div>
</div>
<table class="box" width="100%" cellpadding="0" cellspacing="0">
<tr><td class="box-header">tables_make_good_containers_tables_make_good</td></tr>
<tr><td class="box-body">tables_make_good_containers_tables_make_good</td></tr>
</table>
</code></pre>
http://stackoverflow.com/questions/566574/building-a-complete-number-range-w-out-overlaps0Building a "complete" number range w/out overlapsJohn2009-02-19T18:33:44Z2009-02-26T13:08:18Z
<p>Hey,</p>
<p>I need to build a full "number range" set given a series of numbers. I start with a list such as :</p>
<pre><code>ID START
* 0
a 4
b 70
c 700
d 701
e 85
</code></pre>
<ul>
<li>where "def" is the default range & should "fill-in" the gaps </li>
<li>"overlaps" are value (70, 700, 701) in starting data</li>
</ul>
<p>And need the following result: </p>
<pre><code>ID START END
* 0 - 39
a 4 - 49
* 5 - 69
c 700 - 7009
d 701 - 7019
b 702 - 709
* 71 - 849
e 85 - 859
* 86 - 9
</code></pre>
<p>What I am trying to figure out is if there is some sort of algorithm out there or design pattern to tackle this. I have some ideas but I thought I'd run it by the "experts" first. I am using Python. </p>
<p>Any ideas / direction would be greatly appreciated. Some initial ideas I have: </p>
<ul>
<li>Build a "range" list w/ the start & end values padded to the full length. So default would be 0000 to 9999</li>
<li>Build a "splits" list that is built on the fly</li>
<li>Loop through "range" list comparing each value to the values in the splits list.</li>
<li>In the event that an overlap is found, remove the value in the splits list and add the new range(s).</li>
</ul>
http://stackoverflow.com/questions/546003/subreport-overlapping-in-ssrs0Subreport overlapping in SSRSsan2009-02-13T13:53:27Z2009-02-13T13:53:27Z
<p>Hi, </p>
<p>I have 3 subreports in my SSRS report. If the first subreport is not having result the place is blank in html rendering and excel rendering , where as when exporting to pdf , the second subreport(the bottom one) took the place of the first one(top one)and the data is overlapped.
How do I avoid this overlapping in PDF version.</p>
<p>Your help would really appreciated.</p>
<p>Thanks in advance.
Briji</p>
http://stackoverflow.com/questions/399567/how-do-i-compare-overlapping-values-within-a-row3How do I compare overlapping values within a row?netrox2008-12-30T05:08:00Z2008-12-31T18:24:29Z
<p>I seem to have a problem with this SQL query:</p>
<pre><code>SELECT * FROM appts
WHERE timeStart >='$timeStart'
AND timeEnd <='$timeEnd'
AND dayappt='$boatdate'
</code></pre>
<p>The time is formatted as military time. The logistics is that a boat rental can be reserved at 7am til 1pm or 9am til 1pm or 9am til 5pm. If there is an appt within that range, it should return appts but it has proven to be inconsistent. If I pick 9am til 1pm, it will ignore appts that started with 7am even though it overlaps 9am-1pm. If I pick 9 to 5, it will return nothing even though it should with the 7am to 1pm. How do I make a SQL statement that includes the whole range from timeStart to timeEnd including those that overlap? </p>
http://stackoverflow.com/questions/320448/overlapping-matches-in-regex2Overlapping matches in Regexfencliff2008-11-26T11:50:44Z2008-11-27T23:10:19Z
<p>Hi,</p>
<p>I can't seem to find an answer to this problem, and I'm wondering if one exists. Simplified example:</p>
<p>Consider a string "nnnn", where I want to find all matches of "nn" - but also those that overlap with each other. So the regex would provide the following 3 matches:</p>
<ol>
<li><b>nn</b>nn</li>
<li>n<b>nn</b>n</li>
<li>nn<b>nn</b></li>
</ol>
<p>I realize this is not exactly what regexes are meant for, but walking the string and parsing this manually seems like an awful lot of code, considering that in reality the matches would have to be done using a pattern, not a literal string.</p>
http://stackoverflow.com/questions/270493/how-would-you-make-two-divs-overlap2How would you make two <div>s overlap?st elmos fire2008-11-06T22:02:10Z2008-11-06T22:54:59Z
<p>I need two divs to look a bit like this: </p>
<pre><code> | |
---| LOGO |------------------------
| |_______________| LINKS |
| CONTENT |
</code></pre>
<p>What's the neatest/most elegant way of making them overlap neatly? The logo will have a fixed height and width and will be touching the top edge of the page.</p>