2

I have an SVG file of a line drawing. When I import it into Tinkercad it generates a 3D version with the width of the lines remaining constant along the Z-axis (as expected). I would like to generate a similar STL but with the line width narrowing for increasing values of Z. (Similar to the Bevel option in some of the Tinkercad Text shapes).

Can anyone point me at a tutorial on how to do this in Tinkercad, Blender, Meshmixer or Open SCAD?

0scar
  • 37,708
  • 12
  • 68
  • 156
NetFool
  • 133
  • 3

1 Answers1

1

In OpenSCAD you could create a bevel using the minkowski transformation by transforming the curve using tapered shape such as a pyramid or as I do below a tapered cylinder:

minkowski() {

linear_extrude(1) import("drawing.svg");

cylinder(h = 20, r1 = 10, r2 = 1); }

Example result in OpenSCAD