I know you can't usually define things in the class like this:
class MyClass
{
double DefaultForward[3] = {0.0, 1.0, 0.0};
};
but I have some values that don't really make sense to set in the constructor - they are more "deeply connected" as THIS SHOULD ALWAYS BE THIS VALUE!! Like a define, but I don't think you can declare arrays in a define?
Is there some magic keyword that lets you do something like this - something like const static double Default....
Thanks,
Dave