lbs_jacobian
lbs_jacobian(V, W)
Linear Blend Skinning Jacobian
Parameters:
Name | Type | Description | Default |
---|---|---|---|
V |
(n, d) numpy float array
|
Mesh vertices |
required |
W |
(n, k) numpy float array
|
Mesh skinning weights |
required |
Returns:
Name | Type | Description |
---|---|---|
J |
(nd, d(d+1)k) numpy float array
|
Linear blend skinning Jacobian matrix |
Source code in src\fast_cody\lbs_jacobian.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 |
|