| 239 | //------------------------------------------------------------------------ |
| 240 | template<class T, unsigned S, unsigned P> |
| 241 | inline unsigned vertex_block_storage<T,S,P>::prev_vertex(double* x, double* y) const |
| 242 | { |
| 243 | if(m_total_vertices > 1) return vertex(m_total_vertices - 2, x, y); |
| 244 | return path_cmd_stop; |
| 245 | } |
| 246 | |
| 247 | //------------------------------------------------------------------------ |
| 248 | template<class T, unsigned S, unsigned P> |