1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-13 02:04:16 +02:00

update to 3.0

This commit is contained in:
Justin Lin
2021-02-13 11:11:23 +08:00
parent 9eb0e59dfb
commit df13e20fa2
10 changed files with 10 additions and 10 deletions

View File

@@ -44,8 +44,8 @@ These examples incubate dotSCAD and dotSCAD refactors these examples. See [examp
## Documentation ## Documentation
### 2D Module ### 2D Module
- [arc](https://openhome.cc/eGossip/OpenSCAD/lib2x-arc.html) - [arc](https://openhome.cc/eGossip/OpenSCAD/lib3x-arc.html)
- [hexagons](https://openhome.cc/eGossip/OpenSCAD/lib2x-hexagons.html) - [hexagons](https://openhome.cc/eGossip/OpenSCAD/lib3x-hexagons.html)
- [hull_polyline2d](https://openhome.cc/eGossip/OpenSCAD/lib2x-hull_polyline2d.html) - [hull_polyline2d](https://openhome.cc/eGossip/OpenSCAD/lib2x-hull_polyline2d.html)
- [line2d](https://openhome.cc/eGossip/OpenSCAD/lib2x-line2d.html) - [line2d](https://openhome.cc/eGossip/OpenSCAD/lib2x-line2d.html)
- [multi_line_text](https://openhome.cc/eGossip/OpenSCAD/lib2x-multi_line_text.html) - [multi_line_text](https://openhome.cc/eGossip/OpenSCAD/lib2x-multi_line_text.html)

View File

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 23 KiB

View File

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 22 KiB

View File

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 21 KiB

View File

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

View File

Before

Width:  |  Height:  |  Size: 37 KiB

After

Width:  |  Height:  |  Size: 37 KiB

View File

@@ -19,7 +19,7 @@ Creates an arc. You can pass a 2 element vector to define the central angle. Its
arc(radius = 20, angle = [45, 290], width = 2); arc(radius = 20, angle = [45, 290], width = 2);
%circle(r = 20); %circle(r = 20);
![arc](images/lib2x-arc-1.JPG) ![arc](images/lib3x-arc-1.JPG)
use <arc.scad>; use <arc.scad>;
@@ -27,7 +27,7 @@ Creates an arc. You can pass a 2 element vector to define the central angle. Its
arc(radius = 20, angle = [45, 290], width = 2, width_mode = "LINE_OUTWARD"); arc(radius = 20, angle = [45, 290], width = 2, width_mode = "LINE_OUTWARD");
%circle(r = 20); %circle(r = 20);
![arc](images/lib2x-arc-2.JPG) ![arc](images/lib3x-arc-2.JPG)
use <arc.scad>; use <arc.scad>;
@@ -35,7 +35,7 @@ Creates an arc. You can pass a 2 element vector to define the central angle. Its
arc(radius = 20, angle = [45, 290], width = 2, width_mode = "LINE_INWARD"); arc(radius = 20, angle = [45, 290], width = 2, width_mode = "LINE_INWARD");
%circle(r = 20); %circle(r = 20);
![arc](images/lib2x-arc-3.JPG) ![arc](images/lib3x-arc-3.JPG)

View File

@@ -1,6 +1,6 @@
# hexagons # hexagons
A hexagonal structure is useful in many situations. This module creates hexagons in a hexagon. This module creates hexagons in a hexagon.
## Parameters ## Parameters
@@ -18,7 +18,7 @@ A hexagonal structure is useful in many situations. This module creates hexagons
hexagons(radius, spacing, levels); hexagons(radius, spacing, levels);
![hexagons](images/lib2x-hexagons-1.JPG) ![hexagons](images/lib3x-hexagons-1.JPG)
use <hexagons.scad>; use <hexagons.scad>;
@@ -29,4 +29,4 @@ A hexagonal structure is useful in many situations. This module creates hexagons
hexagons(radius, spacing, levels); hexagons(radius, spacing, levels);
![hexagons](images/lib2x-hexagons-2.JPG) ![hexagons](images/lib3x-hexagons-2.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-arc.html * @see https://openhome.cc/eGossip/OpenSCAD/lib3x-arc.html
* *
**/ **/

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-hexagons.html * @see https://openhome.cc/eGossip/OpenSCAD/lib3x-hexagons.html
* *
**/ **/