1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-05 14:27:45 +02:00

provided supports for $fa, $fs, $fn

This commit is contained in:
Justin Lin
2017-03-23 10:17:18 +08:00
parent af320b8f0f
commit 1d60f2184e

View File

@@ -10,9 +10,7 @@
* *
**/ **/
module line3d(p1, p2, thickness, p1Style = "CAP_CIRCLE", p2Style = "CAP_CIRCLE", fn = 24) { module line3d(p1, p2, thickness, p1Style = "CAP_CIRCLE", p2Style = "CAP_CIRCLE") {
$fn = fn;
r = thickness / 2; r = thickness / 2;
dx = p2[0] - p1[0]; dx = p2[0] - p1[0];