Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/gtl_interval_concept.htm
Original file line number Diff line number Diff line change
Expand Up @@ -386,14 +386,14 @@ <h2>Functions</h2>
bool <b>abuts</b>(const T1&amp; a, const T2&amp; b,<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
direction_1d dir) </font></td>
<td>Returns true if interval b abuts but down not overlap
<td>Returns true if interval b abuts but does not overlap
interval a on the end of interval a specified by dir.</td>
</tr>
<tr>
<td width="586"><font face="Courier New">template
&lt;typename T1, typename T2&gt;<br />
bool <b>abuts</b>(const T1&amp; a, const T2&amp; b)</font></td>
<td>Returns true if interval b abuts but down not overlap
<td>Returns true if interval b abuts but does not overlap
interval a.</td>
</tr>
<tr>
Expand Down
10 changes: 5 additions & 5 deletions doc/gtl_rectangle_concept.htm
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@ <h2>Functions</h2>
bool <b>abuts</b>(const T1&amp; a, const T2&amp; b,<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
direction_2d dir) </font></td>
<td>Returns true if rectangle b abuts but down not overlap
<td>Returns true if rectangle b abuts but does not overlap
rectangle a on the side of rectangle a specified by dir.</td>
</tr>
<tr>
Expand All @@ -618,15 +618,15 @@ <h2>Functions</h2>
bool <b>abuts</b>(const T1&amp; a, const T2&amp; b,<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
orientation_2d) </font></td>
<td>Returns true if rectangle b abuts but down not overlap
<td>Returns true if rectangle b abuts but does not overlap
rectangle a on either side of rectangle a specified by the
orientation_2d.</td>
</tr>
<tr>
<td width="586"><font face="Courier New">template
&lt;typename T1, typename T2&gt;<br />
bool <b>abuts</b>(const T1&amp; a, const T2&amp; b)</font></td>
<td>Returns true if rectangle b abuts but down not overlap
<td>Returns true if rectangle b abuts but does not overlap
rectangle a on any side.</td>
</tr>
<tr>
Expand All @@ -636,8 +636,8 @@ <h2>Functions</h2>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
bool consider_touch = true) </font></td>
<td>Sets rectangle a to the intersection of rectangle a and
interval b along the orientation_2d and returns true.&nbsp; If the does
not intersect the interval, the rectangle is unchanged and the function
interval b along the orientation_2d and returns true.&nbsp; If the rectangle
does not intersect the interval, the rectangle is unchanged and the function
returns false.&nbsp; If the flag consider_touch is true intervals that
abut are considered to intersect.</td>
</tr>
Expand Down