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