mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-08-24 07:13:34 +02:00
remove #
This commit is contained in:
@@ -63,7 +63,7 @@ module polyline2d(points, width, startingStyle = "CAP_SQUARE", endingStyle = "CA
|
|||||||
|
|
||||||
ra = c > 0 ? (-90 + v1a) : (90 + v1a - a);
|
ra = c > 0 ? (-90 + v1a) : (90 + v1a - a);
|
||||||
if(joinStyle == "JOIN_ROUND") {
|
if(joinStyle == "JOIN_ROUND") {
|
||||||
#translate(p2)
|
translate(p2)
|
||||||
rotate(ra)
|
rotate(ra)
|
||||||
pie(
|
pie(
|
||||||
radius = radius,
|
radius = radius,
|
||||||
@@ -71,7 +71,7 @@ module polyline2d(points, width, startingStyle = "CAP_SQUARE", endingStyle = "CA
|
|||||||
$fn = $fn * 360 / a
|
$fn = $fn * 360 / a
|
||||||
);
|
);
|
||||||
} else { // "JOIN_BEVEL"
|
} else { // "JOIN_BEVEL"
|
||||||
#translate(p2)
|
translate(p2)
|
||||||
rotate(ra)
|
rotate(ra)
|
||||||
polygon([[0, 0], [radius, 0], [radius * cos(a), radius * sin(a)]]);
|
polygon([[0, 0], [radius, 0], [radius * cos(a), radius * sin(a)]]);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user