------------------------------------------------------------is_next_poly
| 497 | |
| 498 | //------------------------------------------------------------is_next_poly |
| 499 | inline bool is_next_poly(unsigned c) |
| 500 | { |
| 501 | return is_stop(c) || is_move_to(c) || is_end_poly(c); |
| 502 | } |
| 503 | |
| 504 | //-------------------------------------------------------------------is_cw |
| 505 | inline bool is_cw(unsigned c) |
no test coverage detected