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

Method operator-

tutorials/FaceNormals/FaceNormals.cpp:90–97  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

88 }
89
90 vec3 operator-(const vec3& rhs) const
91 {
92 vec3 result = {};
93 result.x = x - rhs.x;
94 result.y = y - rhs.y;
95 result.z = z - rhs.z;
96 return result;
97 }
98};
99
100inline McDouble

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected