Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/defold/defold
/ Quat_mul
Function
Quat_mul
engine/script/src/script_vmath.cpp:673–679 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
671
}
672
673
static int Quat_mul(lua_State *L)
674
{
675
Quat* q1 = CheckQuat(L, 1);
676
Quat* q2 = CheckQuat(L, 2);
677
PushQuat(L, *q1 * *q2);
678
return 1;
679
}
680
681
static int Quat_concat(lua_State *L)
682
{
Callers
nothing calls this directly
Calls
2
CheckQuat
Function · 0.85
PushQuat
Function · 0.85
Tested by
no test coverage detected