コード例 #1
0
 /**
  * *************************************** Check if another object is equal to this Scaling6
  * object ****************************************
  */
 public boolean equals(Object a) {
   if ((a != null) && (a instanceof Scaling6)) {
     Scaling6 iv = (Scaling6) a;
     return (this.dimension(0) == iv.dimension(0)) && (this.position() == iv.position());
   }
   return false;
 }