MCPcopy Create free account
hub / github.com/ICE27182/Python-3D-renderer / vec3_minus_vec3

Method vec3_minus_vec3

v1.0/main.py:272–273  ·  view source on GitHub ↗
(v, u)

Source from the content-addressed store, hash-verified

270 return [v[0] + u[0], v[1] + u[1], v[2] + u[2]]
271
272 def vec3_minus_vec3(v, u) -> list:
273 return [v[0] - u[0], v[1] - u[1], v[2] - u[2]]
274
275
276

Callers 2

get_normalMethod · 0.80
mainFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected