------------------------------------------------------------is_next_poly
| 421 | |
| 422 | //------------------------------------------------------------is_next_poly |
| 423 | inline bool is_next_poly(unsigned c) |
| 424 | { |
| 425 | return is_stop(c) || is_move_to(c) || is_end_poly(c); |
| 426 | } |
| 427 | |
| 428 | //-------------------------------------------------------------------is_cw |
| 429 | inline bool is_cw(unsigned c) |
no test coverage detected