Пример #1
0
 /**
  * @param o the object to compare for equality
  * @return true if this transform and the provided transform have the exact same double values.
  */
 public boolean strictEquals(final Object o) {
   if (this == o) {
     return true;
   }
   if (!(o instanceof CCTransform)) {
     return false;
   }
   final CCTransform comp = (CCTransform) o;
   return _myMatrix.strictEquals(comp.getMatrix())
       && _myScale.equals(comp.scale())
       && _myTranslation.equals(comp.translation());
 }