rotate_rig
rotate_rig(P, R)
Rotates a rig by a rotation matrix R
Parameters:
Name | Type | Description | Default |
---|---|---|---|
P |
(b, 3, 4) float numpy array
|
World transformation of each bone |
required |
R |
(3, 3) float numpy array
|
Rotation matrix |
required |
Returns:
Name | Type | Description |
---|---|---|
Prot |
(b, 3, 4) float numpy array
|
Rotated world transformation of each bone |
Source code in src\fast_cody\rotate_rig.py
3 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 |
|