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.
55 lines
1.0 KiB
55 lines
1.0 KiB
"""
|
|
This type stub file was generated by pyright.
|
|
"""
|
|
|
|
from typing import Any
|
|
|
|
class TrapezoidMapTriFinder:
|
|
def __init__(self, *args, **kwargs) -> None:
|
|
...
|
|
|
|
def find_many(self, *args, **kwargs) -> Any:
|
|
...
|
|
|
|
def get_tree_stats(self, *args, **kwargs) -> Any:
|
|
...
|
|
|
|
def initialize(self, *args, **kwargs) -> Any:
|
|
...
|
|
|
|
def print_tree(self, *args, **kwargs) -> Any:
|
|
...
|
|
|
|
|
|
|
|
class TriContourGenerator:
|
|
def __init__(self, *args, **kwargs) -> None:
|
|
...
|
|
|
|
def create_contour(self, *args, **kwargs) -> Any:
|
|
...
|
|
|
|
def create_filled_contour(self, *args, **kwargs) -> Any:
|
|
...
|
|
|
|
|
|
|
|
class Triangulation:
|
|
def __init__(self, *args, **kwargs) -> None:
|
|
...
|
|
|
|
def calculate_plane_coefficients(self, *args, **kwargs) -> Any:
|
|
...
|
|
|
|
def get_edges(self, *args, **kwargs) -> Any:
|
|
...
|
|
|
|
def get_neighbors(self, *args, **kwargs) -> Any:
|
|
...
|
|
|
|
def set_mask(self, *args, **kwargs) -> Any:
|
|
...
|
|
|
|
|
|
|