MCPcopy Index your code
hub / github.com/VolmitSoftware/Adapt / equals

Method equals

src/main/java/com/volmit/adapt/util/Tuple3d.java:344–350  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Callers 15

PapiExpansionMethod · 0.45
autoUpdateCheckMethod · 0.45
hotloadedMethod · 0.45
executeMethod · 0.45
executeMethod · 0.45
executeMethod · 0.45
notifyXPMethod · 0.45
onMethod · 0.45
isMethod · 0.45
isMethod · 0.45
isMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected