int
main(int, char *[])
{
auto myGroup = GroupType::New();
auto myEllipse = EllipseType::New();
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;
}
Representation of a group based on the spatial object classes.
constexpr TContainer MakeFilled(typename TContainer::const_reference value)