| 88 | struct Influence |
| 89 | { |
| 90 | Influence() { |
| 91 | boneId = -1; |
| 92 | weight = 0.0f; |
| 93 | lastInfluenceForThisVertex = 0; |
| 94 | } |
| 95 | |
| 96 | Influence(unsigned b, float w, bool last) { |
| 97 | boneId = b; |
nothing calls this directly
no outgoing calls
no test coverage detected