You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
405 B
Python
11 lines
405 B
Python
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: ...
|