MCPcopy Create free account
hub / github.com/cutdigital/mcut / operator-

Method operator-

tutorials/TextureCoordinates/TextureCoordinates.cpp:103–109  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

101 }
102
103 vec2 operator-(const vec2& rhs) const
104 {
105 vec2 result = {{0.0, 0.0}};
106 result.x = x - rhs.x;
107 result.y = y - rhs.y;
108 return result;
109 }
110};
111
112

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected