THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 19/07/2011 at 12:15, xxxxxxxx wrote:
User Information:
Cinema 4D Version: 12
Platform: Windows ; Mac ;
Language(s) :
---------
Hey everyone. I want to drop the axis of my object to the bottom of the bounding box.
I can accomplish this by moving the points of the object like so.....
//DROP AXIS
//=====================================//
if(bc->GetBool(PXG_DROP_AXIS) == TRUE)
{
for(int i = 0; i < pointCount; i++)
{
points[i].y += op->GetRad().y;
}
main = polyObj;
}
//=====================================//
However, the bounding box itself does not move.. Anyone know how I get the bounding box to move with this change?
Thanks,
Shawn