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;
}
*par Constraints *The filter image with at least two dimensions and a vector *length of at least The theory supports extension to scalar but *the implementation of the itk vector classes do not **The template parameter TRealType must be floating point(float or double) or *a user-defined "real" numerical type with arithmetic operations defined *sufficient to compute derivatives. **\par Performance *This filter will automatically multithread if run with *SetUsePrincipleComponents