OpenSCAD
Fleeting- External reference: https://www.openscad.org/
- see,
One programmatic CAD.
a rounded box
module roundedBox(length, width, height, radius) {
dRadius = 2*radius;
minkowski() {
cube(size = [width-dRadius, length-dRadius, height]);
cylinder(r = radius, h = 0.01);
}
}
some text
$fn = 40;
linear_extrude(1)
text("test", font = "Belle Allure GS");
Notes linking here
- a small drawer to put the lids
- BelfrySCAD/BOSL2: The Belfry OpenScad Library, v2.0. An OpenSCAD library of shapes, masks, and manipulators to make working with OpenSCAD easier. BETA
- create a battery dispenser for C batteries (aborted) (blog)
- gobblet gobbers/tic-tac-toe
- make a new wheel for a toy with openscad (blog)
- printing a C battery holder in openscad (blog)
- trying to 3D print a text with a cursive font
- using OpenSCAD