update to 3.0
@@ -44,8 +44,8 @@ These examples incubate dotSCAD and dotSCAD refactors these examples. See [examp
|
||||
## Documentation
|
||||
|
||||
### 2D Module
|
||||
- [arc](https://openhome.cc/eGossip/OpenSCAD/lib2x-arc.html)
|
||||
- [hexagons](https://openhome.cc/eGossip/OpenSCAD/lib2x-hexagons.html)
|
||||
- [arc](https://openhome.cc/eGossip/OpenSCAD/lib3x-arc.html)
|
||||
- [hexagons](https://openhome.cc/eGossip/OpenSCAD/lib3x-hexagons.html)
|
||||
- [hull_polyline2d](https://openhome.cc/eGossip/OpenSCAD/lib2x-hull_polyline2d.html)
|
||||
- [line2d](https://openhome.cc/eGossip/OpenSCAD/lib2x-line2d.html)
|
||||
- [multi_line_text](https://openhome.cc/eGossip/OpenSCAD/lib2x-multi_line_text.html)
|
||||
|
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 24 KiB |
Before Width: | Height: | Size: 37 KiB After Width: | Height: | Size: 37 KiB |
@@ -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);
|
||||
%circle(r = 20);
|
||||
|
||||

|
||||

|
||||
|
||||
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");
|
||||
%circle(r = 20);
|
||||
|
||||

|
||||

|
||||
|
||||
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");
|
||||
%circle(r = 20);
|
||||
|
||||

|
||||

|
||||
|
||||
|
||||
|
@@ -1,6 +1,6 @@
|
||||
# hexagons
|
||||
|
||||
A hexagonal structure is useful in many situations. This module creates hexagons in a hexagon.
|
||||
This module creates hexagons in a hexagon.
|
||||
|
||||
## Parameters
|
||||
|
||||
@@ -18,7 +18,7 @@ A hexagonal structure is useful in many situations. This module creates hexagons
|
||||
|
||||
hexagons(radius, spacing, levels);
|
||||
|
||||

|
||||

|
||||
|
||||
use <hexagons.scad>;
|
||||
|
||||
@@ -29,4 +29,4 @@ A hexagonal structure is useful in many situations. This module creates hexagons
|
||||
hexagons(radius, spacing, levels);
|
||||
|
||||
|
||||

|
||||

|
@@ -4,7 +4,7 @@
|
||||
* @copyright Justin Lin, 2017
|
||||
* @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
|
||||
*
|
||||
**/
|
||||
|
||||
|
@@ -4,7 +4,7 @@
|
||||
* @copyright Justin Lin, 2017
|
||||
* @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
|
||||
*
|
||||
**/
|
||||
|
||||
|