Karan886 / SnapToObject

An add-on/plugin written in python for a 3D creation suite called blender. This add-on/plugin allows users to align two 3D objects/Meshes together
1 stars 0 forks source link

STO-04: Fix Edited Object False Dimension Bug #4

Closed Karan886 closed 5 years ago

Karan886 commented 5 years ago

When we try to align edited meshes, we are not extracting its true dimensions when determining the alignment offset (to stack them in order). Currently, we assume that the offset is the object scale, but users can increase size of objects in many ways, so we should use its true dimensions to calculate the offset.

Karan886 commented 5 years ago

Also seems like the order of how objects are aligned (ie. all objects should stack on top of object that was selected first) is not behaving properly.

Karan886 commented 5 years ago

Changed the add-on to work with aligning two objects. Also, found a way to restore mesh origin after alignment.