computeTwist method

int computeTwist()

Implementation

int computeTwist() {
  var res = 0;

  for (var i = Corner.upRightFront.index; i < Corner.downRightBottom.index; i++) {
    res = 3 * res + _co[i];
  }

  return res;
}