Returns true if all of the data members of Tuple3d t1 are equal to the corresponding data members in this Tuple3d. @param t1 the tuple with which the comparison is made @return true or false
(Tuple3d t1)
| 342 | * @return true or false |
| 343 | */ |
| 344 | public boolean equals(Tuple3d t1) { |
| 345 | try { |
| 346 | return (this.x == t1.x && this.y == t1.y && this.z == t1.z); |
| 347 | } catch (NullPointerException e2) { |
| 348 | return false; |
| 349 | } |
| 350 | } |
| 351 | |
| 352 | /** |
| 353 | * Returns true if the Object t1 is of type Tuple3d and all of the |
no outgoing calls
no test coverage detected