Return the default `matplotlib.tri.TriFinder` of this triangulation, creating it if necessary. This allows the same TriFinder object to be easily shared.
(self)
| 191 | return x, y, triangles, mask, args, kwargs |
| 192 | |
| 193 | def get_trifinder(self): |
| 194 | """ |
| 195 | Return the default `matplotlib.tri.TriFinder` of this |
| 196 | triangulation, creating it if necessary. This allows the same |
| 197 | TriFinder object to be easily shared. |
| 198 | """ |
| 199 | if self._trifinder is None: |
| 200 | # Default TriFinder class. |
| 201 | from matplotlib.tri._trifinder import TrapezoidMapTriFinder |
| 202 | self._trifinder = TrapezoidMapTriFinder(self) |
| 203 | return self._trifinder |
| 204 | |
| 205 | @property |
| 206 | def neighbors(self): |