Segment -----------------------------------------------------------------------------------------
| 10 | { |
| 11 | // Segment ----------------------------------------------------------------------------------------- |
| 12 | uint32_t Segment::GetPointId(bool front) const |
| 13 | { |
| 14 | return m_forward == front ? m_segmentIdx + 1 : m_segmentIdx; |
| 15 | } |
| 16 | |
| 17 | bool Segment::operator<(Segment const & seg) const |
| 18 | { |
no outgoing calls