mirror of
http://forgejo.openclaw.svc.cluster.local:3000/mrhavens/intellecton.git
synced 2026-06-18 01:22:57 +00:00
10 lines
405 B
Python
10 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: ...
|