A module for dealing with the polylines used throughout Matplotlib.
The primary class for polyline handling in Matplotlib is Path
. Almost all vector drawing makes use of Path
s somewhere in the drawing pipeline.
Whilst a Path
instance itself cannot be drawn, some Artist
subclasses, such as PathPatch
and PathCollection
, can be used for convenient Path
visualisation.
class matplotlib.path.Path(vertices, codes=None, _interpolation_steps=1, closed=False, readonly=False)
[source]
Bases: object
Path
represents a series of possibly disconnected, possibly closed, line and curve segments.
These two arrays always have the same length in the first dimension. For example, to represent a cubic curve, you must provide three vertices as well as three codes CURVE3
.
The code types are:
STOP : 1 vertex (ignored)
MOVETO : 1 vertex
LINETO : 1 vertex
CURVE3 : 1 control point, 1 endpoint
CURVE4 : 2 control points, 1 endpoint
CLOSEPOLY : 1 vertex (ignored)
Users of Path objects should not access the vertices and codes arrays directly. Instead, they should use iter_segments()
or cleaned()
to get the vertex/code pairs. This is important, since many Path
objects, as an optimization, do not store a codes at all, but have a default one provided for them by iter_segments()
.
Some behavior of Path objects can be controlled by rcParams. See the rcParams whose keys contain 'path.'.
Note
The vertices and codes arrays should be treated as immutable -- there are a number of optimizations and assumptions made up front in the constructor that will not change when the data changes.
Create a new path with the given vertices and codes.
Parameters: |
|
---|
CLOSEPOLY = 79
CURVE3 = 3
CURVE4 = 4
LINETO = 2
MOVETO = 1
NUM_VERTICES_FOR_CODE = {0: 1, 1: 1, 2: 1, 3: 2, 4: 3, 79: 1}
A dictionary mapping Path codes to the number of vertices that the code expects.
STOP = 0
classmethod arc(theta1, theta2, n=None, is_wedge=False)
[source]
Return the unit circle arc from angles theta1 to theta2 (in degrees).
theta2 is unwrapped to produce the shortest arc within 360 degrees. That is, if theta2 > theta1 + 360, the arc will be from theta1 to theta2 - 360 and not a full circle plus some extra overlap.
If n is provided, it is the number of spline segments to make. If n is not provided, the number of spline segments is determined based on the delta between theta1 and theta2.
Masionobe, L. 2003. Drawing an elliptical arc using polylines, quadratic or cubic Bezier curves.classmethod circle(center=(0.0, 0.0), radius=1.0, readonly=False)
[source]
Return a Path
representing a circle of a given radius and center.
Parameters: |
|
---|
The circle is approximated using 8 cubic Bezier curves, as described in
Lancaster, Don. Approximating a Circle or an Ellipse Using Four Bezier Cubic Splines.cleaned(self, transform=None, remove_nans=False, clip=None, quantize=False, simplify=False, curves=False, stroke_width=1.0, snap=False, sketch=None)
[source]
Return a new Path with vertices and codes cleaned according to the parameters.
See also
Path.iter_segments
clip_to_bbox(self, bbox, inside=True)
[source]
Clip the path to the given bounding box.
The path must be made up of one or more closed polygons. This algorithm will not behave correctly for unclosed paths.
If inside is True
, clip to the inside of the box, otherwise to the outside of the box.
code_type
alias of numpy.uint8
codes
The list of codes in the Path
as a 1-D numpy array. Each code is one of STOP
, MOVETO
, LINETO
, CURVE3
, CURVE4
or CLOSEPOLY
. For codes that correspond to more than one vertex (CURVE3
and CURVE4
), that code will be repeated so that the length of self.vertices
and self.codes
is always the same.
contains_path(self, path, transform=None)
[source]
Returns whether this (closed) path completely contains the given path.
If transform is not None
, the path will be transformed before performing the test.
contains_point(self, point, transform=None, radius=0.0)
[source]
Returns whether the (closed) path contains the given point.
If transform is not None
, the path will be transformed before performing the test.
radius allows the path to be made slightly larger or smaller.
contains_points(self, points, transform=None, radius=0.0)
[source]
Returns a bool array which is True
if the (closed) path contains the corresponding point.
If transform is not None
, the path will be transformed before performing the test.
radius allows the path to be made slightly larger or smaller.
copy(self)
Returns a shallow copy of the Path
, which will share the vertices and codes with the source Path
.
deepcopy(self, memo=None)
Returns a deepcopy of the Path
. The Path
will not be readonly, even if the source Path
is.
get_extents(self, transform=None)
[source]
Returns the extents (xmin, ymin, xmax, ymax) of the path.
Unlike computing the extents on the vertices alone, this algorithm will take into account the curves and deal with control points appropriately.
has_nonfinite
hatch(hatchpattern, density=6)
[source]
Given a hatch specifier, hatchpattern, generates a Path that can be used in a repeated hatching pattern. density is the number of lines per unit square.
interpolated(self, steps)
[source]
Returns a new path resampled to length N x steps. Does not currently handle interpolating curves.
intersects_bbox(self, bbox, filled=True)
[source]
Returns True if this path intersects a given Bbox
.
filled, when True, treats the path as if it was filled. That is, if the path completely encloses the bounding box, intersects_bbox()
will return True.
The bounding box is always considered filled.
intersects_path(self, other, filled=True)
[source]
Returns True if this path intersects another given path.
filled, when True, treats the paths as if they were filled. That is, if one path completely encloses the other, intersects_path()
will return True.
iter_segments(self, transform=None, remove_nans=True, clip=None, snap=False, stroke_width=1.0, simplify=None, curves=True, sketch=None)
[source]
Iterates over all of the curve segments in the path. Each iteration returns a 2-tuple (vertices, code)
, where vertices
is a sequence of 1-3 coordinate pairs, and code
is a Path
code.
Additionally, this method can provide a number of standard cleanups and conversions to the path.
Parameters: |
|
---|
classmethod make_compound_path(*args)
[source]
Make a compound path from a list of Path objects.
classmethod make_compound_path_from_polys(XY)
[source]
Make a compound path object to draw a number of polygons with equal numbers of sides XY is a (numpolys x numsides x 2) numpy array of vertices. Return object is a Path
(Source code, png, pdf)
should_simplify
True
if the vertices array should be simplified.
simplify_threshold
The fraction of a pixel difference below which vertices will be simplified out.
to_polygons(self, transform=None, width=0, height=0, closed_only=True)
[source]
Convert this path to a list of polygons or polylines. Each polygon/polyline is an Nx2 array of vertices. In other words, each polygon has no MOVETO
instructions or curves. This is useful for displaying in backends that do not support compound paths or Bezier curves.
If width and height are both non-zero then the lines will be simplified so that vertices outside of (0, 0), (width, height) will be clipped.
If closed_only is True
(default), only closed polygons, with the last point being the same as the first point, will be returned. Any unclosed polylines in the path will be explicitly closed. If closed_only is False
, any unclosed polygons in the path will be returned as unclosed polygons, and the closed polygons will be returned explicitly closed by setting the last point to the same as the first point.
transformed(self, transform)
[source]
Return a transformed copy of the path.
See also
matplotlib.transforms.TransformedPath
classmethod unit_circle()
[source]
Return the readonly Path
of the unit circle.
For most cases, Path.circle()
will be what you want.
classmethod unit_circle_righthalf()
[source]
Return a Path
of the right half of a unit circle.
See Path.circle
for the reference on the approximation used.
classmethod unit_rectangle()
[source]
Return a Path
instance of the unit rectangle from (0, 0) to (1, 1).
classmethod unit_regular_asterisk(numVertices)
[source]
Return a Path
for a unit regular asterisk with the given numVertices and radius of 1.0, centered at (0, 0).
classmethod unit_regular_polygon(numVertices)
[source]
Return a Path
instance for a unit regular polygon with the given numVertices and radius of 1.0, centered at (0, 0).
classmethod unit_regular_star(numVertices, innerCircle=0.5)
[source]
Return a Path
for a unit regular star with the given numVertices and radius of 1.0, centered at (0, 0).
vertices
The list of vertices in the Path
as an Nx2 numpy array.
classmethod wedge(theta1, theta2, n=None)
[source]
Return the unit circle wedge from angles theta1 to theta2 (in degrees).
theta2 is unwrapped to produce the shortest wedge within 360 degrees. That is, if theta2 > theta1 + 360, the wedge will be from theta1 to theta2 - 360 and not a full circle plus some extra overlap.
If n is provided, it is the number of spline segments to make. If n is not provided, the number of spline segments is determined based on the delta between theta1 and theta2.
See Path.arc
for the reference on the approximation used.
matplotlib.path.get_path_collection_extents(master_transform, paths, transforms, offsets, offset_transform)
[source]
Given a sequence of Path
s, Transform
s objects, and offsets, as found in a PathCollection
, returns the bounding box that encapsulates all of them.
Parameters: |
|
---|
The way that paths, transforms and offsets are combined follows the same method as for collections: Each is iterated over independently, so if you have 3 paths, 2 transforms and 1 offset, their combinations are as follows:
(A, A, A), (B, B, A), (C, A, A)matplotlib.path.get_paths_extents(paths, transforms=[])
[source]
[Deprecated] Given a sequence of Path
objects and optional Transform
objects, returns the bounding box that encapsulates all of them.
paths is a sequence of Path
instances.
transforms is an optional sequence of Affine2D
instances to apply to each path.
Deprecated since version 3.1.
© 2012–2018 Matplotlib Development Team. All rights reserved.
Licensed under the Matplotlib License Agreement.
https://matplotlib.org/3.1.1/api/path_api.html