I already loaded a 3d delta robot using assimp importer, the 3d model was defined in 3DS with rotations pivots (local view) and exported to FBX, so, when i load using assimp importer I am getting the model3d parts with a definition that includes the name of the 3dmodel + Assimp__Rotation, giving the opportunity to add rotation transformation and perfor the rotation from the defined pivod in 3ds. What I am not able to find, it is how to get the center rotation wold coordinates of this pivot.
When importing from fbx files the Assimp importer stores the pivot point translation into "ModelName__AssimpFbx__GeometricTranslation" model. This transformation is added before applying the rotation and this way it moves the center of rotation.
See that attached fbx file.
If you open the file in Ab3d.PowerToys sample in the Assimp importer sample and click on the "Show objects info" you will see the following:
See that RedBox and BlueBox have __AssimpFbx__GeometricTranslation models defined that translate the pivot point - this is defined in OffsetX, OffsetY and OffsetZ in the transformation matrix. The GreenBox does not have that model because the pivot point is not changed for that model (it is rotated around center).
Note that the file was exported by using Z-up axis (if Y-up is used, then there is additional AssimpFbx__PreRotation).