Quad¶
Represents a four-sided mathematical shape (also called “quadrilateral” or “tetragon”) in the plane, defined as a sequence of four Point objects ul, ur, ll, lr (conveniently called upper left, upper right, lower left, lower right).
Quads can be obtained as results of text search methods (Page.search_for()
), and they are used to define text marker annotations (see e.g. Page.addSquigglyAnnot()
and friends), and in several draw methods (like Page.draw_quad()
/ Shape.draw_quad()
, Page.draw_oval()
/ :meth`Shape.drawQuad`).
Note
If the corners of a rectangle are transformed with a rotation, scale or translation Matrix, then the resulting quad is rectangular, i.e. its corners again enclose angles of 90 degrees. Property
Quad.isRectangular
checks whether a quad can be thought of being the result of such an operation.This is not true for all matrices: e.g. shear matrices produce parallelograms, and non-invertible matrices deliver “degenerate” tetragons like triangles or lines.
Attribute
Quad.rect
obtains the envelopping rectangle. Vice versa, rectangles now have attributesRect.quad
, resp.IRect.quad
to obtain their respective tetragon versions.
Methods / Attributes |
Short Description |
---|---|
transform with a matrix |
|
transform with a point and matrix |
|
upper left point |
|
upper right point |
|
lower left point |
|
lower right point |
|
true if quad is a convex set |
|
true if quad is an empty set |
|
true if quad is a (rotated) rectangle |
|
smallest containing Rect |
|
the longest width value |
|
the longest height value |
Class API
-
class
Quad
¶ -
__init__
(self)¶
-
__init__
(self, ul, ur, ll, lr)
-
__init__
(self, quad)
-
__init__
(self, sequence) Overloaded constructors: “ul”, “ur”, “ll”, “lr” stand for
point_like
objects (the four corners), “sequence” is a Python sequence with fourpoint_like
objects.If “quad” is specified, the constructor creates a new copy of it.
Without parameters, a quad consisting of 4 copies of Point(0, 0) is created.
-
transform
(matrix)¶ Modify the quadrilateral by transforming each of its corners with a matrix.
- Parameters
matrix (matrix_like) – the matrix.
-
morph
(fixpoint, matrix)¶ (New in version 1.17.0) “Morph” the quad with a matrix-like using a point-like as fixed point.
- Parameters
fixpoint (point_like) – the point.
matrix (matrix_like) – the matrix.
- Returns
a new quad. The effect is achieved by using the following code:
>>> T = fitz.Matrix(1, 1).preTranslate(fixpoint.x, fixpoint.y) >>> result = self * ~T * matrix * T
So the quad is translated such, that fixpoint becomes the origin (0, 0), then the matrix is applied to it, and finally a reverse translation is done.
Typical uses include rotating the quad around a desired point.
-
rect
¶ The smallest rectangle containing the quad, represented by the blue area in the following picture.
- Type
-
isConvex
¶ (New in version 1.16.1)
True if every line connecting two points of the quad is inside the quad. We in addition also make sure here, that the quad is not “degenerate”, i.e. not all corners are on the same line (which would still qualify as convexity in the mathematical sense).
- Type
bool
-
isEmpty
¶ True if enclosed area is zero, which means that at least three of the four corners are on the same line. If this is false, the quad may still be degenerate or not look like a tetragon at all (triangles, parallelograms, trapezoids, …).
- Type
bool
-
isRectangular
¶ True if all corner angles are 90 degrees. This implies that the quad is convex and not empty.
- Type
bool
-
width
¶ The maximum length of the top and the bottom side.
- Type
float
-
height
¶ The maximum length of the left and the right side.
- Type
float
-
Remark¶
This class adheres to the sequence protocol, so components can be dealt with via their indices, too. Also refer to Using Python Sequences as Arguments in PyMuPDF.
We are still in process to extend algebraic operations to quads. Multiplication and division with / by numbers and matrices are already defined. Addition, subtraction and any unary operations may follow when we see an actual need.