Initial commit

master
entuland 2018-07-02 15:13:47 +02:00
commit b7322ea304
6 changed files with 1299 additions and 0 deletions

2
.gitattributes vendored Normal file
View File

@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto

35
LICENSE.txt Normal file
View File

@ -0,0 +1,35 @@
LuaMatrix License
-----------
LuaMatrix ( http://luamatrix.luaforge.net/ ) is licensed under the
same terms as Lua (MIT license) reproduced below. This means that
LuaMatrix is free software and can be used for both academic and
commercial purposes at absolutely no cost.
For details and rationale, see http://www.lua.org/license.html .
===============================================================================
Copyright (C) 2007-2010 Michael Lutz.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
===============================================================================
(end of COPYRIGHT)

2
README.txt Normal file
View File

@ -0,0 +1,2 @@
https://github.com/entuland/lua-matrix is just a thin wrapper to make this library available as a mod inside the Minetest game.
Please see https://github.com/davidm/lua-matrix for the original version

8
init.lua Normal file
View File

@ -0,0 +1,8 @@
-- this whole mod is just a thin wrapper around https://github.com/davidm/lua-matrix
local mod_path = minetest.get_modpath(minetest.get_current_modname())
matrix = dofile(mod_path .. "/matrix.lua")
-- that's it

1251
matrix.lua Normal file

File diff suppressed because it is too large Load Diff

1
mod.conf Normal file
View File

@ -0,0 +1 @@
name = matrix