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

Method vec3_plus_vec3

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

Source from the content-addressed store, hash-verified

267
268class Tool:
269 def vec3_plus_vec3(v, u) -> list:
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]]

Callers 1

mainFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected