(coord)
| 45 | dwg.add(dwg.rect(size=('100%', '100%'), fill='white')) |
| 46 | |
| 47 | def to_svg(coord): |
| 48 | return [coord.x, coord.y] |
| 49 | |
| 50 | def add_arrowed_line(start, end, **args): |
| 51 | direction = (end - start).make_unit_vector() |
no outgoing calls
no test coverage detected