OpenScad Helix Library by Terageek - Thingiverse
www.thingiverse.com › thing:5510548Nov 5, 2023 · Edit Dec 7, 2022 Updated the algorithm used to interpolate between samples when creating a helix with a filled in core. This fixed some artifacts that could happen in some cases and improves accuracy in all cases, although it made the code run somewhat slower. Optimized one of the internal functions by doing some paper pre-calculations. Removing the "work-in-progress" designation Yet another ...
Helix library for OpenSCAD by gaellafond - Thingiverse
www.thingiverse.com › thing:2200395Nov 5, 2023 · Yet another OpenSCAD library to create helices. There is plenty of libraries out there, but most of them are unpredictable. The height, width, angle, etc are not respected, making it very hard to create precise model. This library is very precise, flexible and easy to use. It takes a 2D polygon and extrude it just like linear_extrude and rotate_extrude. 2018-02-24: Added a default value for ...
helix_extrude - OPENHOME.CC
openhome.cc › eGossip › OpenSCADuse <helix_extrude.scad> r1 = 40; r2 = 20; levels = 5; level_dist = 10; shape_pts = [ [10, -2], [10, 2], [9, 2], [9, 0], [1, 0], [1, 2], [0, 2], [0, -2], ]; helix_extrude(shape_pts, radius = [r1, r2], levels = levels, level_dist = level_dist, vt_dir = "SPI_UP" ); %cylinder(h = levels * level_dist, r1 = r1, r2 = r2); Extrudes a 2D shape along a ...