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

Method fuzzyEqual

jni/venus/vec2.h:101–101  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

99
100 bool operator !=(const vec2<T>& rhs) const { return !(*this == rhs); }
101 friend bool fuzzyEqual(const vec2<T>& lhs, const vec2<T>& rhs) { return lhs == rhs; }
102
103 T length2() const { return x*x + y*y; }
104 T length() const { return std::sqrt(x*x + y*y); }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected