26 lines
515 B
Python
26 lines
515 B
Python
"""
|
|
This type stub file was generated by pyright.
|
|
"""
|
|
|
|
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:
|
|
...
|
|
|
|
|
|
|