You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			24 lines
		
	
	
		
			820 B
		
	
	
	
		
			Python
		
	
			
		
		
	
	
			24 lines
		
	
	
		
			820 B
		
	
	
	
		
			Python
		
	
"""
 | 
						|
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"]
 |