View Single Post
Old 7th September 2006, 06:45 AM   #6
PerFnurt
Member
Expert member
 
Join Date: Aug 2003
Location: Eslöv, Sweden
Posts: 93
Default Re: Get Rotation of a Group or Object

Can't you use the 2 function calls in the way you're requesting?

void my_rotate_object(ACObject *ob, float rx, float ry, float rz)
{
set_global_matrix_rotate(rx,ry,rz);
rotate_object(ob);
recordRotationSomehow(rx,ry,rz);
}
__________________
/Per

www.perfnurt.se

Last edited by PerFnurt; 7th September 2006 at 10:24 AM.
PerFnurt is offline   Reply With Quote