Simple question: can a function return an array?
And can I collect data from the function like
value.x = MyFunction(inputparamter).xcoordinate;
value.y = MyFunction(inputparamter).ycoordinate;
value.speed = MyFunction(inputparamter).speed;
or can I even state:
value= MyFunction(inputparameter);
Cheers,
Martijn
And can I collect data from the function like
value.x = MyFunction(inputparamter).xcoordinate;
value.y = MyFunction(inputparamter).ycoordinate;
value.speed = MyFunction(inputparamter).speed;
or can I even state:
value= MyFunction(inputparameter);
Cheers,
Martijn