getRightUpperRotate method
Implementation
ILatLong getRightUpperRotate(int steps) {
switch (steps) {
case -1:
case 0:
return getRightUpper();
case 1:
return getRightLower();
case 2:
return getLeftLower();
case 3:
return getLeftUpper();
default:
throw Exception("step $steps out of range");
}
}