int
main(int, char *[])
{
myEllipse->SetRadiusInObjectSpace(2);
myGroup->AddChild(myEllipse);
myGroup->GetModifiableObjectToParentTransform()->SetOffset(offset);
myGroup->Update();
std::cout <<
"Is my point " <<
point
<<
" inside?: " << myGroup->IsInsideInWorldSpace(
point, 2)
<< std::endl;
myGroup->RemoveChild(myEllipse);
return EXIT_SUCCESS;
}