reversed method

Sp3dFace reversed()

(en)Returns a new face with the orientation of this face reversed. Internally, the order of the referenced indexes is reversed.

(ja)この面の向きを反転した新しい面を返します。 内部的には、参照しているインデックスの順序が反転します。

Implementation

Sp3dFace reversed() {
  Sp3dFace r = deepCopy();
  r.reverse();
  return r;
}