Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/MyGUI/mygui
/ operator/
Function
operator/
MyGUIEngine/src/msdfgen/core/Vector2.hpp:147–149 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
145
}
146
147
inline Vector2 operator/(const Vector2 a, const Vector2 b) {
148
return Vector2(a.x/b.x, a.y/b.y);
149
}
150
151
inline Vector2 operator*(double a, const Vector2 b) {
152
return Vector2(a*b.x, a*b.y);
Callers
nothing calls this directly
Calls
1
Vector2
Class · 0.85
Tested by
no test coverage detected