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