Values returns the current path segment values.
()
| 34 | |
| 35 | // Values returns the current path segment values. |
| 36 | func (s *PathScanner) Values() []float64 { |
| 37 | return s.p.d[s.i-cmdLen(s.p.d[s.i])+2 : s.i] |
| 38 | } |
| 39 | |
| 40 | // Start returns the current path segment start position. |
| 41 | func (s *PathScanner) Start() Point { |
no test coverage detected