forked from matplotlib/matplotlib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
23 lines (20 loc) · 820 Bytes
/
__init__.py
File metadata and controls
23 lines (20 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
"""
Unstructured triangular grid functions.
"""
from ._triangulation import Triangulation
from ._tricontour import TriContourSet, tricontour, tricontourf
from ._trifinder import TriFinder, TrapezoidMapTriFinder
from ._triinterpolate import (TriInterpolator, LinearTriInterpolator,
CubicTriInterpolator)
from ._tripcolor import tripcolor
from ._triplot import triplot
from ._trirefine import TriRefiner, UniformTriRefiner
from ._tritools import TriAnalyzer
__all__ = ["Triangulation",
"TriContourSet", "tricontour", "tricontourf",
"TriFinder", "TrapezoidMapTriFinder",
"TriInterpolator", "LinearTriInterpolator", "CubicTriInterpolator",
"tripcolor",
"triplot",
"TriRefiner", "UniformTriRefiner",
"TriAnalyzer"]