diff --git a/README.md b/README.md index 2b9707b..e452348 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,12 @@ > Extra tools and commands to extend WorldEdit for Minetest ## Current commands: +**Quick Reference:** + + - `//floodfill [ []]` + - `//overlay ` + - `//ellipsoid ` + - `//hollowellipsoid ` ### `//floodfill [ []]` Floods all connected nodes of the same type starting at _pos1_ with (which defaults to `water_source`), in a sphere with a radius of (which defaults to 50). @@ -24,3 +30,20 @@ Note that all-air columns are skipped - so if you experience issues with it not //overlay glass //overlay grass_with_dirt ``` + +### `//ellipsoid ` +Creates a solid ellipsoid at position 1 with the radius `(rx, ry, rz)`. + +``` +//ellipsoid 10 5 15 ice +//ellipsoid 3 5 10 dirt +//ellipsoid 20 10 40 air +``` + +### `//hollowellipsoid ` +Creates a hollow ellipsoid at position 1 with the radius `(rx, ry, rz)`. Works the same way as `//ellipsoid` does. + +``` +//hollowellipsoid 10 5 15 glass +//hollowellipsoid 21 11 41 stone +```