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

Function operator-

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

* Subtract two vectors. */

Source from the content-addressed store, hash-verified

118 * Subtract two vectors.
119 */
120 Vector4 operator-(const ::Vector4& vector4) const { return ::Vector4Subtract(*this, vector4); }
121
122 Vector4& operator-=(const ::Vector4& vector4) {
123 set(::Vector4Subtract(*this, vector4));

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected