| 135 | |
| 136 | template <typename T, bool conservative> |
| 137 | LineSegmentIterator<T, conservative> LineSegment<T, conservative>::begin() const |
| 138 | { |
| 139 | return LineSegmentIterator<T, conservative>(this->startPoint, *this); |
| 140 | } |
| 141 | |
| 142 | template <typename T, bool conservative> |
| 143 | LineSegmentIterator<T, conservative> LineSegment<T, conservative>::end() const |
no outgoing calls