* Fixed an issue with is_quat, is_vec3, is_vec2, and is_mat4 methods * Fixed a minor issue with local variables being declared too late
32 lines
341 B
Lua
32 lines
341 B
Lua
local mat4 = require "modules.mat4"
|
|
|
|
describe("mat4:", function()
|
|
end)
|
|
|
|
--[[
|
|
new
|
|
identity
|
|
from_angle_axis
|
|
from_direction
|
|
from_transform
|
|
from_ortho
|
|
from_perspective
|
|
from_hmd_perspective
|
|
clone
|
|
mul
|
|
mul_mat4x1
|
|
invert
|
|
scale
|
|
rotate
|
|
translate
|
|
shear
|
|
look_at
|
|
transpose
|
|
project
|
|
unproject
|
|
is_mat4
|
|
to_vec4s
|
|
to_quat
|
|
to_frustum
|
|
]]
|