コード例 #1
0
ファイル: PrimitiveMacro.java プロジェクト: simon-zz/FidoCadJ
 /**
  * Mirror the primitive. For a macro, it is different than for the other primitive, since we just
  * need to toggle the mirror flag.
  *
  * @param xpos the x value of the pivot axis.
  */
 public void mirrorPrimitive(int xpos) {
   super.mirrorPrimitive(xpos);
   m ^= true;
   changed = true;
 }