I was wondering if there is an easy way to access an element of a two dimensional array using a COORD struct. for example:
COORD myCoord = {2,6};
TwoDiArray myArray;
myArray.at(myCoord) = 10;
I have no idea how to properly do this. Any suggestions?
You just have to define a proper function
at()
: