reverse method

void reverse()

(en)Flips the orientation of all faces.

(ja)保持している全ての面の向きを反転します。

Implementation

void reverse() {
  for (Sp3dFace i in faces) {
    i.reverse();
  }
}