Exactly what it says in the tin. Here is the code I am using.
Code:
void COLSHAPE_DetermineBounds(int node,float* min3f,float* max3f)
{
float minx=0,miny=0,minz=0,maxx=0,maxy=0,maxz=0;
h3dGetNodeAABB(node,&minx,&miny,&minz,&maxx,&maxy,&maxz);
std::cout<<" DetermineBounds\n";
std::cout<<" Min: "<<minx<<" "<<miny<<" "<<minz<<"\n";
std::cout<<" Max: "<<maxx<<" "<<maxy<<" "<<maxz<<"\n";
}
Does it matter what kind of node I pass into GetNodeAABB? Because I never read anything about such requirements in the documentation.
As before, please, don't all rush in at once.
