reconnect moved files to git repo
This commit is contained in:
23
venv/lib/python3.11/site-packages/matplotlib/tri/__init__.py
Normal file
23
venv/lib/python3.11/site-packages/matplotlib/tri/__init__.py
Normal file
@ -0,0 +1,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"]
|
||||
Reference in New Issue
Block a user