copyleft.swept_volume
swept_volume(V, F, transformations=None, rotations=None, translations=None, scales=None, align_rotations_with_velocity=False, eps=0.05, num_seeds=100, num_faces=None, verbose=False)
Find region covered by object a long a trajectory
Computes the swept volume of a triangle mesh along a trajectory, given as translations keyframes which are interpolated as a Catmull-Rom spline, and rotations which are interpolated using quaternion spherical linear interpolation.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
V |
numpy double array
|
Matrix of mesh vertex coordinates |
required |
F |
numpy int array
|
Matrix of mesh triangle indices into V |
required |
transformations |
list of numpy double array, optional (default None)
|
List of transformation matrices in homogeneous coordinates (if not None, superseeds all other trajectory inputs) |
None
|
rotations |
list of numpy double array, optional (default None)
|
List of rotation matrices |
None
|
translations |
list of numpy double array, optional (default None)
|
List of translation vectors (must be set if transformations is None) |
None
|
scales |
list of doubles, optional (default None)
|
List of scaling factors (if None, no scaling is performed) |
None
|
align_rotations_with_velocity |
bool, optional (default False)
|
If rotations is None and this option is True, rotations are chosen roughyl such that the shape aligns with the velocity vector |
False
|
eps |
double, optional (default 0.05)
|
Voxel edge-length (finer will be slower but provide a finer output) |
0.05
|
num_seeds |
int, optional (default 100)
|
Number of seeds to initialize swept volume fronts (see "Swept Volumes via Spacetime Numerical Continuation" for more information). Should be set higher only for extremely complicated self-intersecting paths. |
100
|
num_faces |
int, optional (default None)
|
If not None, will decimate output to have this desired number of faces. |
None
|
verbose |
bool, optional (default False)
|
Whether to print runtime and other performance information. |
False
|
Returns:
Name | Type | Description |
---|---|---|
U |
numpy double array
|
Matrix of swept volume mesh vertex coordinates |
G |
numpy int array
|
Matrix of swept volume mesh triangle indices into U |
See Also
decimate.
Notes
This follows the implementation described in "Swept Volumes via Spacetime Numerical Continuation" by Silvia Sellán, Noam Aigerman and Alec Jacobson.
Examples:
from gpytoolbox import read_mesh
from gpytoolbox.copyleft import swept_volume
# Read sample mesh
v, f = gpytoolbox.read_mesh("test/unit_tests_data/bunny_oded.obj")
# Translation vectors to make Catmull-Rom spline
translation_0 = np.array([0,0,0])
translation_1 = np.array([1,0,-1])
translation_2 = np.array([2,0,1])
translation_3 = np.array([3,0,0])
translations = [translation_0,translation_1,translation_2,translation_3]
# Call swept volume function
u,g = swept_volume(v,f,translations=translations,eps=0.05,
verbose=False,align_rotations_with_velocity=False)
Source code in src/gpytoolbox/copyleft/swept_volume.py
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 |
|