testDiff method

bool testDiff(
  1. Vector3 v
)

Check if v is different to this

Implementation

bool testDiff(Vector3 v ){
  return equals(v) ? false : true;
}