Getting location of a bone (API)

Previously I was able to get the in-game location of a specific bone by using:

Vector locVec = model.getBone(this.bone).getPosition();

Which (I believe) was returning the location of the armorstand displaying the itemstack. How can I get this position in the new API, I believe this would be the in-game location of the display entity now.

I have tried all of the following:

model.getBone(this.bone).get().getTrueGlobalPosition(); model.getBone(this.bone).get().getGlobalPosition(); model.getBone(this.bone).get().getCachedPosition();

but none of these methods seem to be returning the actual location of the bone.

Edited by Sanan Rao