| 994 | } |
| 995 | |
| 996 | void begin_path( canvas &that, float width, float height ) |
| 997 | { |
| 998 | that.move_to( 0.0f, 0.0f ); |
| 999 | that.line_to( width, height ); |
| 1000 | that.stroke(); |
| 1001 | that.set_color( stroke_style, 0.0f, 0.0f, 0.0f, 1.0f ); |
| 1002 | that.begin_path(); |
| 1003 | that.begin_path(); |
| 1004 | that.move_to( width, 0.0f ); |
| 1005 | that.line_to( 0.0f, height ); |
| 1006 | that.stroke(); |
| 1007 | that.begin_path(); |
| 1008 | that.line_to( 0.5f * width, height ); |
| 1009 | that.stroke(); |
| 1010 | } |
| 1011 | |
| 1012 | void move_to( canvas &that, float width, float height ) |
| 1013 | { |
nothing calls this directly
no test coverage detected