DISPATCH
__init__.py
1 # -*- coding: utf-8 -*-
2 
3 """
4 .
5 
6  Self test and tutorial:
7  Run dispatch.graphics.demo() from a directory where
8  data/snapshots.dat exists, and browse the source code
9  in $PYTHONPATH/dispatch/graphics/demo.py
10 
11  List of procedures:
12  minloc(a)
13  maxloc(a)
14  corners(pp,active=1)
15  patch_at(point,pp,verbose=0)
16  is_inside(point,p,verbose=0)
17  count_inside(point,p,verbose=0)
18  indices_and_weights(point,p,iv=0)
19  patches_along(point,pp,dir=0,verbose=0)
20  patches_along_x(point,pp,verbose=0)
21  patches_along_y(point,pp,verbose=0)
22  patches_along_z(point,pp,verbose=0)
23  values_in(point,p,dir=0,iv=0,verbose=0,all=0)
24  values_along(point,pp,dir=0,iv=0,var=None,verbose=0,all=0)
25  values_along_x(point,p,iv=0,verbose=0)
26  values_along_y(point,p,iv=0,verbose=0)
27  values_along_z(point,p,iv=0,verbose=0)
28  shell_values()
29 """
30 
31 from ._graphics import *
32 from .demo import demo
33 from . import curvilinear_transforms
34 
35 __all__ = "minloc,maxloc,corners,patch_at,is_inside,indices_and_weights,"\
36 +"patches_along,values_in,values_along,power2d,pause"