File size: 405 Bytes
fe41391 |
1 2 3 4 5 6 7 8 9 10 11 |
from matplotlib.tri import Triangulation
from numpy.typing import ArrayLike
class TriFinder:
def __init__(self, triangulation: Triangulation) -> None: ...
def __call__(self, x: ArrayLike, y: ArrayLike) -> ArrayLike: ...
class TrapezoidMapTriFinder(TriFinder):
def __init__(self, triangulation: Triangulation) -> None: ...
def __call__(self, x: ArrayLike, y: ArrayLike) -> ArrayLike: ...
|