MCPcopy Create free account
hub / github.com/KAlO2/PerfectShow / fuzzyEqual

Method fuzzyEqual

jni/venus/vec3.h:106–106  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

104 }
105 bool operator !=(const vec3<T>& rhs) const { return !(*this == rhs); }
106 friend bool fuzzyEqual(const vec3<T>& lhs, const vec3<T>& rhs) { return lhs == rhs; }
107
108 T length2() const { return x*x + y*y + z*z; }
109 T length() const { return std::sqrt(x*x + y*y + z*z); }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected