int
main(int, char *[])
{
auto myArrow = ArrowType::New();
myArrow->SetPositionInObjectSpace(pos);
myArrow->SetLengthInObjectSpace(2);
ArrowType::VectorType direction{};
direction[1] = 1.0;
myArrow->SetDirectionInObjectSpace(direction);
return EXIT_SUCCESS;
}
Representation of a Arrow based on the spatial object classes.
constexpr TContainer MakeFilled(typename TContainer::const_reference value)