mirror of
https://github.com/Ladebeze66/projetcbaollm.git
synced 2025-12-17 12:07:50 +01:00
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: ...
|