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

Method operator-

tutorials/TextureCoordinates/TextureCoordinates.cpp:146–153  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

144 }
145
146 vec3 operator-(const vec3& rhs) const
147 {
148 vec3 result = {{0.0, 0.0, 0.0}};
149 result.x = x - rhs.x;
150 result.y = y - rhs.y;
151 result.z = z - rhs.z;
152 return result;
153 }
154};
155
156std::string resolve_cc_name_string(McContext context,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected