MCPcopy Create free account
hub / github.com/MyGUI/mygui / operator*

Function operator*

MyGUIEngine/src/msdfgen/core/Vector2.hpp:143–145  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

141}
142
143inline Vector2 operator*(const Vector2 a, const Vector2 b) {
144 return Vector2(a.x*b.x, a.y*b.y);
145}
146
147inline Vector2 operator/(const Vector2 a, const Vector2 b) {
148 return Vector2(a.x/b.x, a.y/b.y);

Callers

nothing calls this directly

Calls 1

Vector2Class · 0.85

Tested by

no test coverage detected