* Check whether two given vectors are almost equal */
| 285 | * Check whether two given vectors are almost equal |
| 286 | */ |
| 287 | RLCPP_NODISCARD bool Equals(const ::Vector4& other) const { |
| 288 | return static_cast<bool>(::Vector4Equals(*this, other)); |
| 289 | } |
| 290 | #endif |
| 291 | |
| 292 | RLCPP_NODISCARD Color ColorFromNormalized() const { return ::ColorFromNormalized(*this); } |
nothing calls this directly
no outgoing calls
no test coverage detected