MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / transform_path_affine

Method transform_path_affine

lib/matplotlib/transforms.py:1662–1670  ·  view source on GitHub ↗

Apply the affine part of this transform to `.Path` *path*, returning a new `.Path`. ``transform_path(path)`` is equivalent to ``transform_path_affine(transform_path_non_affine(values))``.

(self, path)

Source from the content-addressed store, hash-verified

1660 return self.transform_path_affine(self.transform_path_non_affine(path))
1661
1662 def transform_path_affine(self, path):
1663 """
1664 Apply the affine part of this transform to `.Path` *path*, returning a
1665 new `.Path`.
1666
1667 ``transform_path(path)`` is equivalent to
1668 ``transform_path_affine(transform_path_non_affine(values))``.
1669 """
1670 return self.get_affine().transform_path_affine(path)
1671
1672 def transform_path_non_affine(self, path):
1673 """

Callers 3

transform_pathMethod · 0.95
_update_line_limitsMethod · 0.45

Calls 1

get_affineMethod · 0.95

Tested by

no test coverage detected