(self, triangulation)
| 38 | """ |
| 39 | |
| 40 | def __init__(self, triangulation): |
| 41 | from matplotlib import _tri |
| 42 | super().__init__(triangulation) |
| 43 | self._cpp_trifinder = _tri.TrapezoidMapTriFinder( |
| 44 | triangulation.get_cpp_triangulation()) |
| 45 | self._initialize() |
| 46 | |
| 47 | def __call__(self, x, y): |
| 48 | """ |
nothing calls this directly
no test coverage detected