summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Zhang <azhang9@gmail.com>2013-06-22 23:05:34 -0400
committerAnthony Zhang <azhang9@gmail.com>2013-06-22 23:05:34 -0400
commit58970e7fab96c6d2883ee8c14ee84b07dc8acdfc (patch)
treee72e02b66b5abc05d8c6b2d808369749e50a086d
parent7070f81c59afdfce0cb279310b3c02c0864de273 (diff)
Clarify the documentation regarding the the positioning of WorldEdit primitives relative to position 1.
-rw-r--r--Chat Commands.md12
-rw-r--r--WorldEdit API.md12
-rw-r--r--worldedit/primitives.lua12
-rw-r--r--worldedit_commands/init.lua12
4 files changed, 24 insertions, 24 deletions
diff --git a/Chat Commands.md b/Chat Commands.md
index eee08eb..9951ca3 100644
--- a/Chat Commands.md
+++ b/Chat Commands.md
@@ -75,7 +75,7 @@ Replace all nodes other than <search node> with <replace node> in the current Wo
### //hollowsphere <radius> <node>
-Add hollow sphere at WorldEdit position 1 with radius <radius>, composed of <node>.
+Add hollow sphere centered at WorldEdit position 1 with radius <radius>, composed of <node>.
//hollowsphere 5 Diamond Block
//hollowsphere 12 glass
@@ -83,7 +83,7 @@ Add hollow sphere at WorldEdit position 1 with radius <radius>, composed of <nod
### //sphere <radius> <node>
-Add sphere at WorldEdit position 1 with radius <radius>, composed of <node>.
+Add sphere centered at WorldEdit position 1 with radius <radius>, composed of <node>.
//sphere 5 Diamond Block
//sphere 12 glass
@@ -91,7 +91,7 @@ Add sphere at WorldEdit position 1 with radius <radius>, composed of <node>.
### //hollowdome <radius> <node>
-Add hollow dome at WorldEdit position 1 with radius <radius>, composed of <node>.
+Add hollow dome centered at WorldEdit position 1 with radius <radius>, composed of <node>.
//hollowdome 5 Diamond Block
//hollowdome 12 glass
@@ -99,7 +99,7 @@ Add hollow dome at WorldEdit position 1 with radius <radius>, composed of <node>
### //dome <radius> <node>
-Add dome at WorldEdit position 1 with radius <radius>, composed of <node>.
+Add dome centered at WorldEdit position 1 with radius <radius>, composed of <node>.
//dome 5 Diamond Block
//dome 12 glass
@@ -125,7 +125,7 @@ Add cylinder at WorldEdit position 1 along the x/y/z/? axis with length <length>
### //pyramid <height> <node>
-Add pyramid at WorldEdit position 1 with height <height>, composed of <node>.
+Add pyramid centered at WorldEdit position 1 with height <height>, composed of <node>.
//pyramid 8 Diamond Block
//pyramid 5 glass
@@ -133,7 +133,7 @@ Add pyramid at WorldEdit position 1 with height <height>, composed of <node>.
### //spiral <width> <height> <spacer> <node>
-Add spiral at WorldEdit position 1 with width <width>, height <height>, space between walls <spacer>, composed of <node>.
+Add spiral centered at WorldEdit position 1 with width <width>, height <height>, space between walls <spacer>, composed of <node>.
//spiral 20 5 3 Diamond Block
//spiral 5 2 1 glass
diff --git a/WorldEdit API.md b/WorldEdit API.md
index c994bf7..12320f6 100644
--- a/WorldEdit API.md
+++ b/WorldEdit API.md
@@ -88,25 +88,25 @@ Contained in primitives.lua, this module allows the creation of several geometri
### count = worldedit.hollow_sphere(pos, radius, nodename)
-Adds a hollow sphere at `pos` with radius `radius`, composed of `nodename`.
+Adds a hollow sphere centered at `pos` with radius `radius`, composed of `nodename`.
Returns the number of nodes added.
### count = worldedit.sphere(pos, radius, nodename)
-Adds a sphere at `pos` with radius `radius`, composed of `nodename`.
+Adds a sphere centered at `pos` with radius `radius`, composed of `nodename`.
Returns the number of nodes added.
### count = worldedit.hollow_dome(pos, radius, nodename)
-Adds a hollow dome at `pos` with radius `radius`, composed of `nodename`.
+Adds a hollow dome centered at `pos` with radius `radius`, composed of `nodename`.
Returns the number of nodes added.
### count = worldedit.dome(pos, radius, nodename)
-Adds a dome at `pos` with radius `radius`, composed of `nodename`.
+Adds a dome centered at `pos` with radius `radius`, composed of `nodename`.
Returns the number of nodes added.
@@ -124,13 +124,13 @@ Returns the number of nodes added.
### count = worldedit.pyramid(pos, height, nodename)
-Adds a pyramid at `pos` with height `height`.
+Adds a pyramid centered at `pos` with height `height`.
Returns the number of nodes added.
### count = worldedit.spiral(pos, width, height, spacer, nodename)
-Adds a spiral at `pos` with width `width`, height `height`, space between walls `spacer`, composed of `nodename`.
+Adds a spiral centered at `pos` with width `width`, height `height`, space between walls `spacer`, composed of `nodename`.
Returns the number of nodes added.
diff --git a/worldedit/primitives.lua b/worldedit/primitives.lua
index d0c93a7..4513e8f 100644
--- a/worldedit/primitives.lua
+++ b/worldedit/primitives.lua
@@ -1,6 +1,6 @@
worldedit = worldedit or {}
---adds a hollow sphere at `pos` with radius `radius`, composed of `nodename`, returning the number of nodes added
+--adds a hollow sphere centered at `pos` with radius `radius`, composed of `nodename`, returning the number of nodes added
worldedit.hollow_sphere = function(pos, radius, nodename, env)
local node = {name=nodename}
local pos1 = {x=0, y=0, z=0}
@@ -24,7 +24,7 @@ worldedit.hollow_sphere = function(pos, radius, nodename, env)
return count
end
---adds a sphere at `pos` with radius `radius`, composed of `nodename`, returning the number of nodes added
+--adds a sphere centered at `pos` with radius `radius`, composed of `nodename`, returning the number of nodes added
worldedit.sphere = function(pos, radius, nodename, env)
local node = {name=nodename}
local pos1 = {x=0, y=0, z=0}
@@ -47,7 +47,7 @@ worldedit.sphere = function(pos, radius, nodename, env)
return count
end
---adds a hollow dome at `pos` with radius `radius`, composed of `nodename`, returning the number of nodes added
+--adds a hollow dome centered at `pos` with radius `radius`, composed of `nodename`, returning the number of nodes added
worldedit.hollow_dome = function(pos, radius, nodename, env) --wip: use bresenham sphere for maximum speed
local node = {name=nodename}
local pos1 = {x=0, y=0, z=0}
@@ -71,7 +71,7 @@ worldedit.hollow_dome = function(pos, radius, nodename, env) --wip: use bresenha
return count
end
---adds a dome at `pos` with radius `radius`, composed of `nodename`, returning the number of nodes added
+--adds a dome centered at `pos` with radius `radius`, composed of `nodename`, returning the number of nodes added
worldedit.dome = function(pos, radius, nodename, env) --wip: use bresenham sphere for maximum speed
local node = {name=nodename}
local pos1 = {x=0, y=0, z=0}
@@ -214,7 +214,7 @@ worldedit.cylinder = function(pos, axis, length, radius, nodename, env)
return count
end
---adds a pyramid at `pos` with height `height`, composed of `nodename`, returning the number of nodes added
+--adds a pyramid centered at `pos` with height `height`, composed of `nodename`, returning the number of nodes added
worldedit.pyramid = function(pos, height, nodename, env)
local pos1x, pos1y, pos1z = pos.x - height, pos.y, pos.z - height
local pos2x, pos2y, pos2z = pos.x + height, pos.y + height, pos.z + height
@@ -243,7 +243,7 @@ worldedit.pyramid = function(pos, height, nodename, env)
return count
end
---adds a spiral at `pos` with width `width`, height `height`, space between walls `spacer`, composed of `nodename`, returning the number of nodes added
+--adds a spiral centered at `pos` with width `width`, height `height`, space between walls `spacer`, composed of `nodename`, returning the number of nodes added
worldedit.spiral = function(pos, width, height, spacer, nodename, env) --wip: clean this up
-- spiral matrix - http://rosettacode.org/wiki/Spiral_matrix#Lua
av, sn = math.abs, function(s) return s~=0 and s/av(s) or 0 end
diff --git a/worldedit_commands/init.lua b/worldedit_commands/init.lua
index b50198e..d98dc9d 100644
--- a/worldedit_commands/init.lua
+++ b/worldedit_commands/init.lua
@@ -289,7 +289,7 @@ minetest.register_chatcommand("/replaceinverse", {
minetest.register_chatcommand("/hollowsphere", {
params = "<radius> <node>",
- description = "Add hollow sphere at WorldEdit position 1 with radius <radius>, composed of <node>",
+ description = "Add hollow sphere centered at WorldEdit position 1 with radius <radius>, composed of <node>",
privs = {worldedit=true},
func = function(name, param)
local pos = worldedit.pos1[name]
@@ -320,7 +320,7 @@ minetest.register_chatcommand("/hollowsphere", {
minetest.register_chatcommand("/sphere", {
params = "<radius> <node>",
- description = "Add sphere at WorldEdit position 1 with radius <radius>, composed of <node>",
+ description = "Add sphere centered at WorldEdit position 1 with radius <radius>, composed of <node>",
privs = {worldedit=true},
func = function(name, param)
local pos = worldedit.pos1[name]
@@ -351,7 +351,7 @@ minetest.register_chatcommand("/sphere", {
minetest.register_chatcommand("/hollowdome", {
params = "<radius> <node>",
- description = "Add hollow dome at WorldEdit position 1 with radius <radius>, composed of <node>",
+ description = "Add hollow dome centered at WorldEdit position 1 with radius <radius>, composed of <node>",
privs = {worldedit=true},
func = function(name, param)
local pos = worldedit.pos1[name]
@@ -382,7 +382,7 @@ minetest.register_chatcommand("/hollowdome", {
minetest.register_chatcommand("/dome", {
params = "<radius> <node>",
- description = "Add dome at WorldEdit position 1 with radius <radius>, composed of <node>",
+ description = "Add dome centered at WorldEdit position 1 with radius <radius>, composed of <node>",
privs = {worldedit=true},
func = function(name, param)
local pos = worldedit.pos1[name]
@@ -483,7 +483,7 @@ minetest.register_chatcommand("/cylinder", {
minetest.register_chatcommand("/pyramid", {
params = "<height> <node>",
- description = "Add pyramid at WorldEdit position 1 with height <height>, composed of <node>",
+ description = "Add pyramid centered at WorldEdit position 1 with height <height>, composed of <node>",
privs = {worldedit=true},
func = function(name, param)
local pos = worldedit.pos1[name]
@@ -514,7 +514,7 @@ minetest.register_chatcommand("/pyramid", {
minetest.register_chatcommand("/spiral", {
params = "<width> <height> <space> <node>",
- description = "Add spiral at WorldEdit position 1 with width <width>, height <height>, space between walls <space>, composed of <node>",
+ description = "Add spiral centered at WorldEdit position 1 with width <width>, height <height>, space between walls <space>, composed of <node>",
privs = {worldedit=true},
func = function(name, param)
local pos = worldedit.pos1[name]