1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-01-16 21:58:26 +01:00

Renamed files

This commit is contained in:
Justin Lin 2017-03-11 17:53:40 +08:00
parent d71817bd42
commit bbd90f4047

View File

@ -14,12 +14,12 @@ Creates a polyline from a list of `x`, `y` coordinates. It depends on the `line2
polyline2d(points = [[1, 2], [-5, -4], [-5, 3], [5, 5]], width = 1);
![polyline2d](images/polyline2d-1.JPG)
![polyline2d](images/lib-polyline2d-1.JPG)
polyline2d(points = [[1, 2], [-5, -4], [-5, 3], [5, 5]], width = 1,
endingStyle = CAP_ROUND);
![polyline2d](images/polyline2d-2.JPG)
![polyline2d](images/lib-polyline2d-2.JPG)
polyline2d(points = [[1, 2], [-5, -4], [-5, 3], [5, 5]], width = 1,
startingStyle = CAP_ROUND, endingStyle = CAP_ROUND);