From e297c739139ad0116ebdcda7a8dc5884d89f5a96 Mon Sep 17 00:00:00 2001 From: Perttu Ahola Date: Sat, 31 Mar 2012 13:08:17 +0300 Subject: More documentation in doc/lua_api.txt --- builtin/builtin.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'builtin') diff --git a/builtin/builtin.lua b/builtin/builtin.lua index e529b7261..d6782a49a 100644 --- a/builtin/builtin.lua +++ b/builtin/builtin.lua @@ -100,7 +100,11 @@ function string:trim() return (self:gsub("^%s*(.-)%s*$", "%1")) end -assert(string.trim("\n \t\tfoo\t ") == "foo") +assert(string.trim("\n \t\tfoo bar\t ") == "foo bar") + +function minetest.pos_to_string(pos) + return "(" .. pos.x .. "," .. pos.y .. "," .. pos.z .. ")" +end -- -- Item definition helpers @@ -115,10 +119,6 @@ function minetest.inventorycube(img1, img2, img3) .. "{" .. img3:gsub("%^", "&") end -function minetest.pos_to_string(pos) - return "(" .. pos.x .. "," .. pos.y .. "," .. pos.z .. ")" -end - function minetest.get_pointed_thing_position(pointed_thing, above) if pointed_thing.type == "node" then if above then -- cgit v1.2.3