Regular API function

simMultiplyPoses / sim.multiplyPoses

Description Multiplies two poses. See also the section about positions, orientations and transformations
C/C++
synopsis
simInt simMultiplyPoses(const simFloat* poseIn1,const simFloat* poseIn2,simFloat* poseOut)
C/C++
parameters
poseIn1: the first input pose
poseIn2: the second input pose
poseOut: the output pose (the result of the multiplication: poseIn1*poseIn2).
C/C++
return value
-1 if operation was not successful
Lua
synopsis
float[7] resultPose=sim.multiplyPoses(float[7] poseIn1,float[7] poseIn2)
Lua
parameters
Similar to the C-function counterpart
Lua
return values
resultPose: the result pose (a table containing 7 values)
Python
synopsis
list resultPose=sim.multiplyPoses(list poseIn1,list poseIn2)