MCPcopy Create free account
hub / github.com/pymupdf/PyMuPDF / draw_quad

Method draw_quad

src/__init__.py:15119–15122  ·  view source on GitHub ↗

Draw a Quad.

(self, quad: quad_like)

Source from the content-addressed store, hash-verified

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,

Callers

nothing calls this directly

Calls 2

draw_polylineMethod · 0.95
QuadClass · 0.85

Tested by

no test coverage detected