diff --git a/README.md b/README.md index db3ce449..15b1cef7 100644 --- a/README.md +++ b/README.md @@ -376,9 +376,9 @@ These examples incubate dotSCAD and dotSCAD refactors these examples. See [examp Signature | Description --|-- -[**polyhedra/tetrahedron**(radius[, detail])](https://openhome.cc/eGossip/OpenSCAD/lib3x-tetrahedron.html) | Create a tetrahedron. -[**polyhedra/hexahedron**(radius[, detail])](https://openhome.cc/eGossip/OpenSCAD/lib3x-hexahedron.html) | create a hexahedron. -[**polyhedra/octahedron**(radius[, detail])](https://openhome.cc/eGossip/OpenSCAD/lib3x-octahedron.html) | create a octahedron. +[**polyhedra/tetrahedron**(radius[, detail])](https://openhome.cc/eGossip/OpenSCAD/lib3x-polyhedra_tetrahedron.html) | Create a tetrahedron. +[**polyhedra/hexahedron**(radius[, detail])](https://openhome.cc/eGossip/OpenSCAD/lib3x-polyhedra_hexahedron.html) | create a hexahedron. +[**polyhedra/octahedron**(radius[, detail])](https://openhome.cc/eGossip/OpenSCAD/lib3x-polyhedra_octahedron.html) | create a octahedron. polyhedra/dodecahedron | create a dodecahedron. polyhedra/icosahedron | create a icosahedron. polyhedra/superellipsoid | create a superellipsoid. diff --git a/docs/images/lib3x-hexahedron-1.JPG b/docs/images/lib3x-polyhedra_hexahedron-1.JPG similarity index 100% rename from docs/images/lib3x-hexahedron-1.JPG rename to docs/images/lib3x-polyhedra_hexahedron-1.JPG diff --git a/docs/images/lib3x-octahedron-1.JPG b/docs/images/lib3x-polyhedra_octahedron-1.JPG similarity index 100% rename from docs/images/lib3x-octahedron-1.JPG rename to docs/images/lib3x-polyhedra_octahedron-1.JPG diff --git a/docs/images/lib3x-tetrahedron-1.JPG b/docs/images/lib3x-polyhedra_tetrahedron-1.JPG similarity index 100% rename from docs/images/lib3x-tetrahedron-1.JPG rename to docs/images/lib3x-polyhedra_tetrahedron-1.JPG diff --git a/docs/lib3x-hexahedron.md b/docs/lib3x-polyhedra_hexahedron.md similarity index 86% rename from docs/lib3x-hexahedron.md rename to docs/lib3x-polyhedra_hexahedron.md index 6ac09ddf..a4fbe070 100644 --- a/docs/lib3x-hexahedron.md +++ b/docs/lib3x-polyhedra_hexahedron.md @@ -18,5 +18,5 @@ Creates a hexahedron. hexahedron(radius = 1, detail = i); } -![hexahedron](images/lib3x-hexahedron-1.JPG) +![hexahedron](images/lib3x-polyhedra_hexahedron-1.JPG) diff --git a/docs/lib3x-octahedron.md b/docs/lib3x-polyhedra_octahedron.md similarity index 86% rename from docs/lib3x-octahedron.md rename to docs/lib3x-polyhedra_octahedron.md index 184dd5cf..4f768fff 100644 --- a/docs/lib3x-octahedron.md +++ b/docs/lib3x-polyhedra_octahedron.md @@ -18,5 +18,5 @@ Creates a octahedron. octahedron(radius = 1, detail = i); } -![octahedron](images/lib3x-octahedron-1.JPG) +![octahedron](images/lib3x-polyhedra_octahedron-1.JPG) diff --git a/docs/lib3x-tetrahedron.md b/docs/lib3x-polyhedra_tetrahedron.md similarity index 86% rename from docs/lib3x-tetrahedron.md rename to docs/lib3x-polyhedra_tetrahedron.md index 66801b4a..62252a02 100644 --- a/docs/lib3x-tetrahedron.md +++ b/docs/lib3x-polyhedra_tetrahedron.md @@ -18,5 +18,5 @@ Creates a tetrahedron. tetrahedron(radius = 1, detail = i); } -![tetrahedron](images/lib3x-tetrahedron-1.JPG) +![tetrahedron](images/lib3x-polyhedra_tetrahedron-1.JPG) diff --git a/src/polyhedra/hexahedron.scad b/src/polyhedra/hexahedron.scad index 80a269cb..956d1652 100644 --- a/src/polyhedra/hexahedron.scad +++ b/src/polyhedra/hexahedron.scad @@ -4,7 +4,7 @@ * @copyright Justin Lin, 2021 * @license https://opensource.org/licenses/lgpl-3.0.html * -* @see https://openhome.cc/eGossip/OpenSCAD/lib3x-hexahedron.html +* @see https://openhome.cc/eGossip/OpenSCAD/lib3x-polyhedra_hexahedron.html * **/ diff --git a/src/polyhedra/octahedron.scad b/src/polyhedra/octahedron.scad index df748a8b..90bc150d 100644 --- a/src/polyhedra/octahedron.scad +++ b/src/polyhedra/octahedron.scad @@ -4,7 +4,7 @@ * @copyright Justin Lin, 2021 * @license https://opensource.org/licenses/lgpl-3.0.html * -* @see https://openhome.cc/eGossip/OpenSCAD/lib3x-octahedron.html +* @see https://openhome.cc/eGossip/OpenSCAD/lib3x-polyhedra_octahedron.html * **/ diff --git a/src/polyhedra/tetrahedron.scad b/src/polyhedra/tetrahedron.scad index 13357f44..dd8e283b 100644 --- a/src/polyhedra/tetrahedron.scad +++ b/src/polyhedra/tetrahedron.scad @@ -4,7 +4,7 @@ * @copyright Justin Lin, 2021 * @license https://opensource.org/licenses/lgpl-3.0.html * -* @see https://openhome.cc/eGossip/OpenSCAD/lib3x-tetrahedron.html +* @see https://openhome.cc/eGossip/OpenSCAD/lib3x-polyhedra_tetrahedron.html * **/