1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-11 09:14:29 +02:00

update to 3.0

This commit is contained in:
Justin Lin
2021-02-17 11:41:21 +08:00
parent df03994d21
commit 4de9b66393
6 changed files with 6 additions and 6 deletions

View File

@@ -52,7 +52,7 @@ These examples incubate dotSCAD and dotSCAD refactors these examples. See [examp
- [pie](https://openhome.cc/eGossip/OpenSCAD/lib3x-pie.html) - [pie](https://openhome.cc/eGossip/OpenSCAD/lib3x-pie.html)
- [polyline2d](https://openhome.cc/eGossip/OpenSCAD/lib3x-polyline2d.html) - [polyline2d](https://openhome.cc/eGossip/OpenSCAD/lib3x-polyline2d.html)
- [polygon_hull](https://openhome.cc/eGossip/OpenSCAD/lib3x-polygon_hull.html) - [polygon_hull](https://openhome.cc/eGossip/OpenSCAD/lib3x-polygon_hull.html)
- [rounded_square](https://openhome.cc/eGossip/OpenSCAD/lib2x-rounded_square.html) - [rounded_square](https://openhome.cc/eGossip/OpenSCAD/lib3x-rounded_square.html)
### 3D Module ### 3D Module
- [crystal_ball](https://openhome.cc/eGossip/OpenSCAD/lib2x-crystal_ball.html) - [crystal_ball](https://openhome.cc/eGossip/OpenSCAD/lib2x-crystal_ball.html)

View File

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 18 KiB

View File

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

View File

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View File

@@ -1,6 +1,6 @@
# rounded_square # rounded_square
Creates a rounded square or rectangle in the first quadrant. When `center` is `true` the square is centered on the origin. Creates a rounded square or rectangle in the first quadrant.
## Parameters ## Parameters
@@ -15,7 +15,7 @@ Creates a rounded square or rectangle in the first quadrant. When `center` is `t
rounded_square(size = 50, corner_r = 5); rounded_square(size = 50, corner_r = 5);
![rounded_square](images/lib2x-rounded_square-1.JPG) ![rounded_square](images/lib3x-rounded_square-1.JPG)
use <rounded_square.scad>; use <rounded_square.scad>;
@@ -25,7 +25,7 @@ Creates a rounded square or rectangle in the first quadrant. When `center` is `t
center = true center = true
); );
![rounded_square](images/lib2x-rounded_square-2.JPG) ![rounded_square](images/lib3x-rounded_square-2.JPG)
use <rounded_square.scad>; use <rounded_square.scad>;
@@ -36,7 +36,7 @@ Creates a rounded square or rectangle in the first quadrant. When `center` is `t
center = true center = true
); );
![rounded_square](images/lib2x-rounded_square-3.JPG) ![rounded_square](images/lib3x-rounded_square-3.JPG)

View File

@@ -4,7 +4,7 @@
* @copyright Justin Lin, 2017 * @copyright Justin Lin, 2017
* @license https://opensource.org/licenses/lgpl-3.0.html * @license https://opensource.org/licenses/lgpl-3.0.html
* *
* @see https://openhome.cc/eGossip/OpenSCAD/lib2x-rounded_square.html * @see https://openhome.cc/eGossip/OpenSCAD/lib3x-rounded_square.html
* *
**/ **/