File size: 998 Bytes
fe41391
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# This is a private module implemented in C++
# As such these type stubs are overly generic, but here to allow these types
# as return types for public methods
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: ...