Esempio n. 1
0
FSphere FSphere::TransformBy(const FTransform& M) const
{
	FSphere	Result;

	Result.Center = M.TransformPosition(this->Center);
	Result.W = M.GetMaximumAxisScale();

	return Result;
}