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

remove center parameter

This commit is contained in:
Justin Lin
2019-03-15 15:39:01 +08:00
parent c661a1c5a5
commit 249022a271

View File

@@ -33,7 +33,7 @@ module line2d(p1, p2, width, p1Style = "CAP_SQUARE", p2Style = "CAP_SQUARE") {
module round_end(point) {
translate(point)
rotate(atan_angle)
circle(half_width, center = true, $fn = frags);
circle(half_width, $fn = frags);
// hook for testing
test_line2d_cap(point, "CAP_ROUND");