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

Function operator-

include/Vector3.hpp:88–88  ·  view source on GitHub ↗

* Subtract two vectors. */

Source from the content-addressed store, hash-verified

86 * Subtract two vectors.
87 */
88 Vector3 operator-(const ::Vector3& vector3) const { return Vector3Subtract(*this, vector3); }
89
90 Vector3& operator-=(const ::Vector3& vector3) {
91 set(Vector3Subtract(*this, vector3));

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected