Changeset 2214:a886e48e0d91 in lemon-0.x
- Timestamp:
- 09/14/06 20:39:07 (18 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2944
- Location:
- lemon
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/dim2.h
r2212 r2214 456 456 return *this; 457 457 } 458 459 // ///Sums a bounding box and a point 460 // BoundingBox operator +(const Point<T>& u){ 461 // BoundingBox b = *this; 462 // return b += u; 463 // } 464 465 ///Increments a bounding box with another bounding box 458 459 ///Increments a bounding to contain another bounding box 466 460 BoundingBox& add(const BoundingBox &u){ 467 461 if ( !u.empty() ){ … … 472 466 } 473 467 474 ///Sums two bounding boxes475 BoundingBox operator +(const BoundingBox& u){476 BoundingBox b = *this;477 return b.add(u);478 }479 480 481 468 ///Intersection of two bounding boxes 482 469 BoundingBox operator &(const BoundingBox& u){ … … 497 484 498 485 ///\ingroup maps 486 ///Map of x-coordinates of a dim2::Point<>-map 499 487 /// 500 488 template<class M> … … 533 521 534 522 ///\ingroup maps 523 ///Constant (read only) version of \ref XMap 535 524 /// 536 525 template<class M> … … 562 551 563 552 ///\ingroup maps 553 ///Map of y-coordinates of a dim2::Point<>-map 564 554 /// 565 555 template<class M> … … 598 588 599 589 ///\ingroup maps 590 ///Constant (read only) version of \ref YMap 600 591 /// 601 592 template<class M> … … 625 616 626 617 627 ///Map of the \ref Point::normSquare() "normSquare()" of an \ref Point "Point"-map 628 629 ///Map of the \ref Point::normSquare() "normSquare()" of an \ref Point "Point"-map 630 ///\ingroup maps 631 /// 618 ///\brief Map of the \ref Point::normSquare() "normSquare()" 619 ///of an \ref Point "Point"-map 620 /// 621 ///Map of the \ref Point::normSquare() "normSquare()" 622 ///of an \ref Point "Point"-map 623 ///\ingroup maps 624 /// 632 625 template<class M> 633 626 class NormSquareMap -
lemon/eps.h
r2207 r2214 206 206 ///they 207 207 ///are collected. These operations form a \e path. 208 ///Then you can \ref stroke(), \ref fill(), \ref eo fill(), \ref clip() or209 ///\ref eo clip() it.208 ///Then you can \ref stroke(), \ref fill(), \ref eoFill(), \ref clip() or 209 ///\ref eoClip() it. 210 210 ///When drawing, you can also use \ref closePath() to - surprise - close the 211 211 ///current path. … … 223 223 224 224 ///Stroke (draw) a path. 225 ///\sa collect 225 ///\sa collect() 226 226 /// 227 227 EpsDrawer &stroke(); … … 229 229 230 230 ///Fill a path. 231 ///\sa collect 231 ///\sa collect() 232 232 /// 233 233 EpsDrawer &fill(); … … 235 235 236 236 ///Even-odd fill a path. 237 ///\sa collect 237 ///\sa collect() 238 238 /// 239 239 EpsDrawer &eoFill(); … … 242 242 ///This function sets a clipping area. After that, the drawing operations 243 243 ///will affect only this area. 244 ///\sa collect 244 ///\sa collect() 245 245 /// 246 246 EpsDrawer &clip(); … … 250 250 ///After that, the drawing operations 251 251 ///will affect only this area. 252 ///\sa collect 252 ///\sa collect() 253 253 /// 254 254 EpsDrawer &eoClip();
Note: See TracChangeset
for help on using the changeset viewer.