MCPcopy Create free account
hub / github.com/RobLoach/raylib-cpp / operator!=

Method operator!=

include/Vector4.hpp:53–53  ·  view source on GitHub ↗

* An exact value by value inequality comparison. * Due to floating point inaccuracies consider using Equals instead. */

Source from the content-addressed store, hash-verified

51 * Due to floating point inaccuracies consider using Equals instead.
52 */
53 constexpr bool operator!=(const ::Vector4& other) const { return !(*this == other); }
54
55 RLCPP_NODISCARD constexpr ::Rectangle ToRectangle() const { return {x, y, z, w}; }
56

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected