wip card clicking

This commit is contained in:
Asuro
2025-03-29 22:27:34 +01:00
parent cd03f89465
commit 3ce1acc633
12 changed files with 127 additions and 22 deletions

View File

@@ -171,3 +171,9 @@ Mat4 Mat4::Transpose()
bx::mtxTranspose(result.M, M);
return result;
}
Vec4 Mat4::Mul(const Vec4& vec)
{
Vec4 out;
bx::vec4MulMtx(&out.x, &vec.x, &M[0]);
return out;
}