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

Method fuzzyEqual

jni/venus/vec4.h:97–97  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

95 }
96 bool operator !=(const vec4<T>& rhs) const { return !(*this == rhs); }
97 friend bool fuzzyEqual(const vec4<T>& lhs, const vec4<T>& rhs) { return lhs == rhs; }
98
99 T length2() const { return x*x + y*y + z*z + w*w; }
100 T length() const { return std::sqrt(x*x + y*y + z*z + w*w); }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected