Example #1
0
//----------------------------------------------------------------------------
void Bound::TransformBy (const Transform& transform, Bound& bound)
{
	bound.mCenter = transform*mCenter;
	bound.mRadius = transform.GetNorm()*mRadius;
}