Difference between revisions of "User talk:Afflatus"

From Minetest Developer Wiki
Jump to navigation Jump to search
Line 12: Line 12:
  
 
---
 
---
 +
 +
vector.random2d()
 +
vector.random3d()
 +
vector.set_length(v, l)
 +
vector.limit(v, l)
 +
vector.dot(a, b)
 +
vector.cross(a, b)
 +
vector.scalar_triple(a, b, c)
 +
vector.vector_triple(a, b, c)
 +
vector.angle_between(a, b)
 +
vector.yaw(v)

Revision as of 05:16, 11 July 2016

find_nodes_in_area_under_air

https://github.com/minetest/minetest/blob/master/doc/lua_api.txt#L2070

---

"should return the leftover itemstack (if nil, no item is removed) " http://dev.minetest.net/minetest.register_craftitem#Callbacks https://github.com/minetest/minetest_game/pull/1173 https://github.com/minetest/minetest/blob/fa0bbbf96df17f0d7911274ea85e5c049c20d07b/doc/lua_api.txt#L3466 https://github.com/minetest/minetest/blob/fa0bbbf96df17f0d7911274ea85e5c049c20d07b/doc/lua_api.txt#L3625

---

vector.random2d() vector.random3d() vector.set_length(v, l) vector.limit(v, l) vector.dot(a, b) vector.cross(a, b) vector.scalar_triple(a, b, c) vector.vector_triple(a, b, c) vector.angle_between(a, b) vector.yaw(v)