(self)
| 2803 | self._transformed_points = None |
| 2804 | |
| 2805 | def _revalidate(self): |
| 2806 | # only recompute if the invalidation includes the non_affine part of |
| 2807 | # the transform |
| 2808 | if (self._invalid == self._INVALID_FULL |
| 2809 | or self._transformed_path is None): |
| 2810 | self._transformed_path = \ |
| 2811 | self._transform.transform_path_non_affine(self._path) |
| 2812 | self._transformed_points = \ |
| 2813 | Path._fast_from_codes_and_verts( |
| 2814 | self._transform.transform_non_affine(self._path.vertices), |
| 2815 | None, self._path) |
| 2816 | self._invalid = 0 |
| 2817 | |
| 2818 | def get_transformed_points_and_affine(self): |
| 2819 | """ |
no test coverage detected