In Poser 4 Pro I’m using Python to create a command that would allow me to transfer a prop to the position of an actor object, like the head or a hand. Poser Python has a method, actor.WorldMatrix() that returns the world matrix of the actor object as a “Float Type 4x4 Tuple”, which when printed out looks like this…
((0.212241604924, 0.62350487709, 0.752459228039, 0.0), (-0.918641448021, 0.38988211751, -0.0639495104551, 0.0), (-0.333243250847, -0.677667558193, 0.655526697636, 0.0), (0.650325059891, 0.25583088398, 0.0927870869637, 1.0))
My problem is I don’t understand it and what ever I try, haven’t managed translating this into a new global position for my target prop object. Anyone have any idea what I should be doing?