End returns the current path segment end position.
()
| 76 | |
| 77 | // End returns the current path segment end position. |
| 78 | func (s *PathScanner) End() Point { |
| 79 | return Point{s.p.d[s.i-2], s.p.d[s.i-1]} |
| 80 | } |
| 81 | |
| 82 | // Path returns the current path segment. |
| 83 | func (s *PathScanner) Path() *Path { |
no outgoing calls