MCPcopy Create free account
hub / github.com/defold/defold / Vector3_sub

Function Vector3_sub

engine/script/src/script_vmath.cpp:350–356  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

348 }
349
350 static int Vector3_sub(lua_State *L)
351 {
352 Vector3* v1 = CheckVector3(L, 1);
353 Vector3* v2 = CheckVector3(L, 2);
354 PushVector3(L, *v1 - *v2);
355 return 1;
356 }
357
358 static int Vector3_mul(lua_State *L)
359 {

Callers

nothing calls this directly

Calls 2

CheckVector3Function · 0.85
PushVector3Function · 0.85

Tested by

no test coverage detected