1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-05 22:37:35 +02:00
This commit is contained in:
Justin Lin
2021-10-28 08:04:26 +08:00
parent b76a2f9c32
commit 9022cb731d
10 changed files with 9 additions and 9 deletions

View File

@@ -376,9 +376,9 @@ These examples incubate dotSCAD and dotSCAD refactors these examples. See [examp
Signature | Description Signature | Description
--|-- --|--
[**polyhedra/tetrahedron**(radius[, detail])](https://openhome.cc/eGossip/OpenSCAD/lib3x-tetrahedron.html) | Create a tetrahedron. [**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-hexahedron.html) | create a hexahedron. [**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-octahedron.html) | create a octahedron. [**polyhedra/octahedron**(radius[, detail])](https://openhome.cc/eGossip/OpenSCAD/lib3x-polyhedra_octahedron.html) | create a octahedron.
polyhedra/dodecahedron | create a dodecahedron. polyhedra/dodecahedron | create a dodecahedron.
polyhedra/icosahedron | create a icosahedron. polyhedra/icosahedron | create a icosahedron.
polyhedra/superellipsoid | create a superellipsoid. polyhedra/superellipsoid | create a superellipsoid.

View File

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 32 KiB

View File

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

View File

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 26 KiB

View File

@@ -18,5 +18,5 @@ Creates a hexahedron.
hexahedron(radius = 1, detail = i); hexahedron(radius = 1, detail = i);
} }
![hexahedron](images/lib3x-hexahedron-1.JPG) ![hexahedron](images/lib3x-polyhedra_hexahedron-1.JPG)

View File

@@ -18,5 +18,5 @@ Creates a octahedron.
octahedron(radius = 1, detail = i); octahedron(radius = 1, detail = i);
} }
![octahedron](images/lib3x-octahedron-1.JPG) ![octahedron](images/lib3x-polyhedra_octahedron-1.JPG)

View File

@@ -18,5 +18,5 @@ Creates a tetrahedron.
tetrahedron(radius = 1, detail = i); tetrahedron(radius = 1, detail = i);
} }
![tetrahedron](images/lib3x-tetrahedron-1.JPG) ![tetrahedron](images/lib3x-polyhedra_tetrahedron-1.JPG)

View File

@@ -4,7 +4,7 @@
* @copyright Justin Lin, 2021 * @copyright Justin Lin, 2021
* @license https://opensource.org/licenses/lgpl-3.0.html * @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
* *
**/ **/

View File

@@ -4,7 +4,7 @@
* @copyright Justin Lin, 2021 * @copyright Justin Lin, 2021
* @license https://opensource.org/licenses/lgpl-3.0.html * @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
* *
**/ **/

View File

@@ -4,7 +4,7 @@
* @copyright Justin Lin, 2021 * @copyright Justin Lin, 2021
* @license https://opensource.org/licenses/lgpl-3.0.html * @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
* *
**/ **/