1
0
mirror of https://github.com/nophead/NopSCADlib.git synced 2025-08-11 01:44:01 +02:00

Set convexity to 8 for linear_extrude of extrusion.

This commit is contained in:
Martin Budden
2021-10-02 09:20:51 +01:00
parent 7b111c016a
commit 046c475e18

View File

@@ -138,6 +138,6 @@ module extrusion(type, length, center = true, cornerHole = false) { //! Draw the
vitamin(str("extrusion(", type[0], ", ", length, arg(cornerHole, false, "cornerHole"), "): Extrusion ", type[0], " x ", length, "mm")); vitamin(str("extrusion(", type[0], ", ", length, arg(cornerHole, false, "cornerHole"), "): Extrusion ", type[0], " x ", length, "mm"));
color(grey(90)) color(grey(90))
linear_extrude(length, center = center) linear_extrude(length, center = center, convexity = 8)
extrusion_cross_section(type, cornerHole); extrusion_cross_section(type, cornerHole);
} }