MCPcopy Create free account
hub / github.com/ThePhD/sol2 / operator*

Method operator*

tests/run_time/source/usertypes.constructors.cpp:91–93  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

89 }*/
90
91 friend float operator*(const vector2& _vector, const vector2& _vector2) {
92 return _vector.x * _vector2.x + _vector.y * _vector2.y;
93 }
94
95 friend float operator^(const vector2& _vector, const vector2& _vector2) {
96 return _vector.x * _vector2.y + _vector2.x * _vector.y;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected