why translate and setorigin are different location?

Started by Uncle Ray, September 21, 2015, 06:19:51 AM

Previous topic - Next topic

Uncle Ray

method A
{
obj.cleartranslation();
obj.translate(10,10,10);
}

method B
{
obj.cleartranslation();
obj.setorigin(10,10,10);
}


In my project,method A and method B are different obj's location,
Any tips?

EgonOlsen

I don't see why this should be the case. Just keep in mind that setOrigin() doesn't affect child objects and that clearTranslation() doesn't reset the origin. Maybe it's one of those that makes for the difference.