gel.scripts

All the functions associated with commands.

Command names and corresponding source files:

 1"""All the functions associated with commands.
 2
 3Command names and corresponding source files:
 4* forward: `gel.scripts.forward`
 5* inverse: `gel.scripts.inverse`
 6* downsample_mesh: `gel.scripts.downsample_mesh`
 7* get_u: `gel.scripts.get_u_from_gel_mesh`
 8* get_kinematics_mesh: `gel.scripts.full_shape_to_nodal`
 9* get_veh: `gel.scripts.get_veh`
10"""
11from .forward import forward
12from .inverse import inverse
13from .downsample_mesh import downsample_mesh_main
14from .get_u_from_gel_mesh import get_u_main
15from .full_shape_to_nodal import get_kinematics_mesh
16from .get_veh import get_veh_main
17from .get_displacement_from_gpr import get_u_from_gpr_main