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

Function operator+

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

* Add two vectors */

Source from the content-addressed store, hash-verified

50 * Add two vectors
51 */
52 Vector3 operator+(const ::Vector3& vector3) const { return Vector3Add(*this, vector3); }
53
54 Vector3& operator+=(const ::Vector3& vector3) {
55 set(Vector3Add(*this, vector3));

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected