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

Function Vector4_sub

engine/script/src/script_vmath.cpp:515–521  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

513 }
514
515 static int Vector4_sub(lua_State *L)
516 {
517 Vector4* v1 = CheckVector4(L, 1);
518 Vector4* v2 = CheckVector4(L, 2);
519 PushVector4(L, *v1 - *v2);
520 return 1;
521 }
522
523 static int Vector4_mul(lua_State *L)
524 {

Callers

nothing calls this directly

Calls 2

CheckVector4Function · 0.85
PushVector4Function · 0.85

Tested by

no test coverage detected