mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-08-12 17:54:18 +02:00
update to 3.0
This commit is contained in:
@@ -46,9 +46,9 @@ These examples incubate dotSCAD and dotSCAD refactors these examples. See [examp
|
|||||||
### 2D Module
|
### 2D Module
|
||||||
- [arc](https://openhome.cc/eGossip/OpenSCAD/lib3x-arc.html)
|
- [arc](https://openhome.cc/eGossip/OpenSCAD/lib3x-arc.html)
|
||||||
- [hexagons](https://openhome.cc/eGossip/OpenSCAD/lib3x-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/lib3x-hull_polyline2d.html)
|
||||||
- [line2d](https://openhome.cc/eGossip/OpenSCAD/lib2x-line2d.html)
|
- [line2d](https://openhome.cc/eGossip/OpenSCAD/lib3x-line2d.html)
|
||||||
- [multi_line_text](https://openhome.cc/eGossip/OpenSCAD/lib2x-multi_line_text.html)
|
- [multi_line_text](https://openhome.cc/eGossip/OpenSCAD/lib3x-multi_line_text.html)
|
||||||
- [pie](https://openhome.cc/eGossip/OpenSCAD/lib2x-pie.html)
|
- [pie](https://openhome.cc/eGossip/OpenSCAD/lib2x-pie.html)
|
||||||
- [polyline2d](https://openhome.cc/eGossip/OpenSCAD/lib2x-polyline2d.html)
|
- [polyline2d](https://openhome.cc/eGossip/OpenSCAD/lib2x-polyline2d.html)
|
||||||
- [polygon_hull](https://openhome.cc/eGossip/OpenSCAD/lib2x-polygon_hull.html)
|
- [polygon_hull](https://openhome.cc/eGossip/OpenSCAD/lib2x-polygon_hull.html)
|
||||||
|
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |
Before Width: | Height: | Size: 50 KiB After Width: | Height: | Size: 50 KiB |
@@ -19,4 +19,4 @@ Creates a 2D polyline from a list of `[x, y]` coordinates. As the name says, it
|
|||||||
width = 1
|
width = 1
|
||||||
);
|
);
|
||||||
|
|
||||||

|

|
@@ -27,4 +27,4 @@ Creates a line from two points. When the end points are `CAP_ROUND`, you can use
|
|||||||
line2d(p1 = [0, 0], p2 = [5, 0], width = 1,
|
line2d(p1 = [0, 0], p2 = [5, 0], width = 1,
|
||||||
p1Style = "CAP_BUTT", p2Style = "CAP_BUTT");
|
p1Style = "CAP_BUTT", p2Style = "CAP_BUTT");
|
||||||
|
|
||||||

|

|
@@ -18,5 +18,5 @@ Creates multi-line text from a list of strings. Parameters are the same as the b
|
|||||||
halign = "center"
|
halign = "center"
|
||||||
);
|
);
|
||||||
|
|
||||||

|

|
||||||
|
|
@@ -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-hull_polyline2d.html
|
* @see https://openhome.cc/eGossip/OpenSCAD/lib3x-hull_polyline2d.html
|
||||||
*
|
*
|
||||||
**/
|
**/
|
||||||
|
|
||||||
|
@@ -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-line2d.html
|
* @see https://openhome.cc/eGossip/OpenSCAD/lib3x-line2d.html
|
||||||
*
|
*
|
||||||
**/
|
**/
|
||||||
|
|
||||||
|
@@ -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-multi_line_text.html
|
* @see https://openhome.cc/eGossip/OpenSCAD/lib3x-multi_line_text.html
|
||||||
*
|
*
|
||||||
**/
|
**/
|
||||||
module multi_line_text(lines, line_spacing = 15, size = 10, font = "Arial", halign = "left", valign = "baseline", direction = "ltr", language = "en", script = "latin"){
|
module multi_line_text(lines, line_spacing = 15, size = 10, font = "Arial", halign = "left", valign = "baseline", direction = "ltr", language = "en", script = "latin"){
|
||||||
|
Reference in New Issue
Block a user