Draw a Quad.
(self, quad: quad_like)
| 15117 | return self.last_point |
| 15118 | |
| 15119 | def draw_quad(self, quad: quad_like) -> Point: |
| 15120 | """Draw a Quad.""" |
| 15121 | q = Quad(quad) |
| 15122 | return self.draw_polyline([q.ul, q.ll, q.lr, q.ur, q.ul]) |
| 15123 | |
| 15124 | def draw_zigzag( |
| 15125 | self, |
nothing calls this directly
no test coverage detected