diff --git a/bindings/py3devil1.py b/bindings/py3devil1.py index 9a14667..051df07 100755 --- a/bindings/py3devil1.py +++ b/bindings/py3devil1.py @@ -379,6 +379,14 @@ class MEsh: length = self.cstruct.b.contents.bd.contents.numVertex return self.cstruct.b.contents.vd.u[:length] + def getboneindexes(self): + length = self.cstruct.b.contents.bd.contents.numVertex + return self.cstruct.b.contents.vd.bi[:length] + + def getboneweights(self): + length = self.cstruct.b.contents.bd.contents.numVertex + return self.cstruct.b.contents.vd.bw[:length] + #--------------------------------------+ # Regular Python #--------------------------------------+