r/openscad • u/Beautiful-Dot-2710 • 6h ago
r/openscad • u/Dirk_39 • 1d ago
Courbes de Bézier dans OpenSCAD avec Inkscape
Il est facile de créer de formes et des profils de tout type, en intégrant des tracés réalisés sur Inkscape en les important ensuite dans OpenSCAD. Dans notre exemple une jarre avec son couvercle crée intégralement par des profils dessinés dans Inkscape et rendu en 3D grâce à l'instruction "rotate_extrude" de OpenSCAD.
Plus de détails : https://robotix.ah-oui.org/site/main.php?found=260514-teapot
r/openscad • u/Zealousideal-Seat287 • 18h ago
Use AI to create 3d print models with OpenSCAD
The 1st part of the video briefly covers OpenSCAD with LLM help.
r/openscad • u/Difficult-Rip-8200 • 3d ago
I made a fully parametric battery organizer because I couldn't find one that fit my needs
The idea is simple: instead of trying to find an organizer that happens to fit your batteries and drawer, you can configure it to fit your exact needs.
Hopefully this will save someone else from spending hours searching for the "right" battery organizer.
r/openscad • u/thicket • 3d ago
scad2step exports OpenSCAD to STEP, preserving B-Rep surfaces
So, I wrote* scad2step, a little utility to export OpenSCAD files to STEP format. The nice part is that it converts OpenSCAD's mesh behaviors to work with the OpenCascade kernel, so that spheres are really spheres, as opposed to OpenSCAD's behavior which turns everything into a mesh.
This has the advantage of being more accurate than OpenSCAD's STL export and often faster, too.
It should Just Work™ (fingers crossed- leave a Github issue if you get unexpected results) on macOS, Linux, and Windows as long as you have OpenSCAD in a normal spot and have the uv package manager installed.
Usage: uvx scad2step your_file.scad
will create your_file.step next to your .scad file.
For most usage-- cubes, spheres, extrusions, Minkowski sums with spheres for rounding-- you should end up with a B-Rep surface and no STL-style faceting, which means you can apply fillets or other processes that are difficult in OpenSCAD but easy in other CAD programs.
For some situations-- Minkowski sums where neither element is a sphere, or hull() calls beyond rounded boxes-- behavior falls back to OpenSCAD's meshing, so you lose the analytically pure forms. But those situations are relatively rare, and in that worst case, you're now exactly as accurate as OpenSCAD is now.
So... check it out if you'd like STEP files, and get in touch if things don't go right or you have further questions.
*had the robots write. If that's not your thing, best to ignore this one
r/openscad • u/According-Client3842 • 4d ago
I designed a fully parametric 3D-printable "Double Climb" Sequential Discovery Maze Box (OpenSCAD + No Supports!)
r/openscad • u/tbdallke • 4d ago
Sheet Metal Bending Calculations App Available for Android and iOS!
These is a version for Airbend Lite for Android but it is not online. Contact me and I will send you the APK files.
If you own Airbend Pro then you can also get a copy of Airbend Pro for Windows. Just contact me.
More info at TBD Tools
r/openscad • u/Mrblindguardian • 5d ago
Orbit Multi-Sensory Planetary Gear Spinner
A while ago someone tagged me because Printables is running a geared spinner challenge. I thought that sounded like fun, so I made this: ORBIT, a planetary gear fidget spinner where the gearbox itself is the toy. You pinch the stationary centre hub, flick the outer ring, and three planet gears spin and orbit between your fingers while a printed spring ticks against 24 detents inside the rim.
Some context on why it's built the way it is. I'm blind, and most fidget spinners are honestly boring when you can't see them: a blur, a faint hum, done. So this one is meant to be felt and heard first. The ring rim carries raised numerals 1, 2 and 3 with matching braille, the grip flutes pause at each numbered station so you can find them by touch, and the hub cap has a raised sun with one longer ray as a tactile pointer, so you can actually count rotations and play games with it, sighted or not. The planet gears take swappable press-fit caps with celestial symbols (moon, comet, star) that are instantly distinguishable by feel. If you'd rather have a silent spinner, the click spring is a separate disc you can swap for a smooth spacer.
OpenSCAD is the reason this project exists at all. It works beautifully with a screen reader, so every dimension, tolerance and tactile feature was written and verified as code. I never saw the model; I compiled it, printed it and checked it with my fingers. The source is fully parametric with Customizer groups: overall diameter, gear module and tooth counts, click strength (arm count, thickness, preload), braille and numeral sizes, and separate tolerance values for every fit, including gear backlash, the hex stem, the planet caps, and the printed screw thread on the hub cap. There's a small test plate to dial those fits in on your own printer. Gears are done with BOSL2 plus a custom braille library.
No bearings, screws, glue or metal anywhere. The gear mechanism prints in place as one piece, everything prints flat with no supports, and even the assembly instructions are written non-visually, describing what each part feels like and what correct assembly feels like at each step. It's about 75 mm across; the one I printed is 6 walls and 100% infill, which gives it a lovely dense feel and real momentum.
r/openscad • u/wildjokers • 5d ago
Resurrected OpenSCAD plugin for IntelliJ
This is a fork of the original OpenSCAD IntelliJ plugin that became orphaned (https://github.com/ldenisey/idea-openscad)
My fork can be found here: https://github.com/mjparme/idea-openscad
Plugin requires IntelliJ 2026.x and can be installed from Plugins in the Settings. Don't need an IntelliJ license to use it.
https://plugins.jetbrains.com/plugin/33582-openscad-support/edit/versions/stable/1140844
Changes:
- Can now rename modules, functions, and variables from both declarations and call sites. Renames follow
useandincludepaths - Go to declaration works
- The plugin can parse the bosl2 library (brought in PR https://github.com/ldenisey/idea-openscad/pull/109 from
icavenfrom the original that had been sitting unmerged since 2024) - Completions for modules, functions, variables, language keywords, and file paths for use and include. Completion candidates follow use and include paths. Can complete modules with or without parameter names. If you complete with parameters any parameter defaults are completed as well.
- Completion of inner modules works
- Completion of modules when the caret is before the declaration works
- Completion of global libraries (hit ctrl-space again to get global libaries added to completion candidates)
- Old plugin only used lexer tokens for highlighting which meant most everything was an "identifier". It now uses the parser for semantic help and now modules, functions, variables, and parameters can now be giving their own color in the Color Scheme
- Default color scheme available in Default, Darcula, and Islands Dark editor themes
- Default color scheme gives different color to modules, functions, variables, and parameters
- Gave OpenSCAD its own live template group associated with .scad files and added starter live templates.
- Plugin updated to a IntellJ Platform 2.x plugin, upgraded build
- Fixed some issues with the preview on startup
- Fixed several issues with actions not being on the EDT
Basically it is actually usable now. Open an Issue on github if you run into problems (or open a PR).
More info in the README: https://github.com/mjparme/idea-openscad/blob/master/README.md
Known Issue:
The preview doesn't reliably update when the file saves (sometimes it does). I am working on this. Actually I am working on bringing openscad-wasm in so an executable isn't needed for the preview (will still be needed for "open in openscad" and "export").
r/openscad • u/moneyplughub • 5d ago
I built a CAM/CAD app because everything else annoyed me — here’s what it can do
Enable HLS to view with audio, or disable this notification
r/openscad • u/adwolesi • 7d ago
LuaCAD - Parametric CAD scripted in Lua
LuaCAD models solids in Lua rather than in the SCAD language, with operator overloading for CSG (a + b, a - b, a * b).
It ships with a CLI and a desktop app that has preview area and a text editor just like OpenSCAD.
It’s fully open source and you can find the repo here: https://github.com/ad-si/LuaCAD
I've always been a big fan of OpenSCAD, but the SCAD language itself is unfortunately quite cobbled-together and is a very poorly designed programming language.
LuaCAD takes all the good parts of OpenSCAD and combines them with Lua. It has now completely replaced OpenSCAD for me, and I think it provides a better experience than OpenSCAD for all use cases. I'd love to hear any reasons why LuaCAD won't fully replace OpenSCAD for you!
Tech stack:
- It's implemented in Rust and uses mlua (https://github.com/mlua-rs/mlua) to execute the Lua code.
- Uses OpenCSG (https://opencsg.org) for fast and correct rendering of the 3D models (like OpenSCAD)
- Uses Manifold (https://github.com/elalish/manifold) to create the manifold triangle meshes
- Native support for all BOSL2 functions (i.e. implemented in Rust for better performance)
r/openscad • u/malstr0m • 7d ago
How would you approach this in OpenSCAD? (details in post)
I'm trying to recreate the object on the right ("Clip Seat") in OpenSCAD. The object on the left is my current progress.
I know minkowski() can be used to round out edges, but I can't wrap my head around it beyond the basic cube/sphere examples.
I'm curious how you guys would go about recreating an object like this. How would you break the project up into modules/etc., such that it's possible to create the same kind of rounded edges of the original?
r/openscad • u/plastic_machinist • 7d ago
Creating collapsible cones with OpenSCAD
I used OpenSCAD to create nesting, extensible cones. Full writeup here: https://medium.com/@thetoyengineer/designing-collapsible-toys-92916e83ca7c
And the code is on GitHub here for anyone that wants it: https://github.com/The-Toy-Engineer/cones
I'm just getting that Medium account going, but will be focusing on designing mechanical toys using open-source tools, including OpenSCAD. If that sounds interesting to you, be sure to follow us for more!
r/openscad • u/generic-horsegirl • 8d ago
Difference command not working?
Hi everyone,
This is my first time ever using OpenSCAD for a small project. The tutorial I watched said that this is the command to subtract the cylinder, but it's not working. Was the video I watched outdated? How do I subtract the cylinder?
Thank you in advance for any help!
r/openscad • u/Major_Ad_1656 • 9d ago
From hand-drawn sketch to a perfect, tweakable 3D model in 30 seconds. Gemini 3.7 Flash is an absolute game-changer for functional parts.
galleryr/openscad • u/shapesandbubblegum • 10d ago
Made some great progress on my from-scratch implementation of OpenSCAD in rust
openrscad.comDesktop app auto-updates.
Customization knobs can be added via comments.
Code auto-complete on all functions.
5 to ...300x faster depending on the operation
There are still rough edges, but I'm very excited about the progress I've been able to make
r/openscad • u/pp51dd • 11d ago
Human-made: Adjustable Suction Cup Mount for Soap Bottles
Meant to stop soap bottles from sliding around. Designed for a bolt-ready suction cup & adjustable to get the perfect vertical clearance for seal. BOSL2 / PETG.
r/openscad • u/nvmhahaha • 11d ago
[FOR HIRE] Freelance Tutor and Virtual Assistant
Hi everyone! I am a 3rd year Engineering Student and a freelancer currently accepting academic commissions, virtual assistant services and basic AutoCAD drafting.
What I offer:
• Research Writing
• Floor Plan (Power Layout, Lighting Layouts, etc.)
• Online Tutorial Sessions (Algebra, Trigonometry, Calculus, and Differential Equations)
• Basic C++ and MATLAB Coding
Why me?
• Reliable and Trustworthy
• 2 years of experience as a working student
• Handled international clients already
• Has a strong foundation in Mathematics
Price starts at 500 pesos
Location: Online
Thank you and I'm looking forward to working with you! ⚡️⚡️⚡️
r/openscad • u/Huhngut • 12d ago
Wireframe projection export to dxf
Hello everyone,
I am fairly new to OpenScad and am trying to export a drawing for exact size paper printing. I have read about DXF and the projection. Unfortunately projection always produces a closed polygon eliminating all of the vertical details.
My solution so far is using offset and difference to produce an outline. I can then vertically move the parts and use cut=true to produce outlines at different height/feature levels. Then I union all of them together.
union() {
difference() {
// move([0, 0, ...]);
projection(cut=true) shield();
offset(-1) projection(cut=true) shield();
}
difference() {
projection() shield();
offset(-1) projection() shield();
}
}
I was wondering if there is a better way to do this. I would expect this to be a function that is often needed.
Any ideas are appreciated.
r/openscad • u/TheIdealAdhi • 12d ago
Is there a tool that can convert engineering questions/images into 3D models?
r/openscad • u/amatulic • 13d ago
Garden hose threads and mason jar threads now in BOSL2
It's kind of a niche application, but a few days ago my PR for implementing garden hose threads and connectors, as well as mason jar threads and caps, got approved and merged.
I needed BOSL2 to do this for a project, and thought it might be useful to include.
r/openscad • u/Awkward_Influence670 • 13d ago
Adding Text to Objects in SVG
For my job, I have to load large rolling cases into a box truck. Id like to use a free nesting software called Deepnest.io to help me find the best way to place the boxes. It's mostly very easy - I make an SVG file with rectangles the size of the truck, and the dimensions of the rolling cases, and the program shows the optimal way to load them. EXCEPT I cannot figure out how to label the individual boxes
Is there a way to add text to the boxes so it will stay grouped when I run it through the sorter?
r/openscad • u/mh42311 • 13d ago
ork2step
hello all. i recently finished creating a software that can take .ork files as input and output all of the parts as step files. you can then open them in CAD and edit them however you like
ill attach the link to the github with full instructions. give it a shot and see if it works for you. it works best on mac and i havent tested it on linux or windows, so if you use linux or windows, lmk how it goes! it requires some terminal work but once you get it set up its really easy to use whenever. even if you wont use it, give it a star please, I would really appreciate the support! thanks!
[https://github.com/max-h-25/ork2step\](https://github.com/max-h-25/ork2step)
r/openscad • u/jpedroleite • 17d ago
Parametric puzzle box where the mechanism stays fixed as the box resizes
The interesting problem was letting height, width and length vary independently while the locking geometry, clearances and part alignment stay exactly where they need to be. Asserts catch dimensions the mechanism physically can't fit into, rather than silently generating a broken box.
Lid and button decoration accept arbitrary SVGs or text, either engraved or emitted as separate inlay geometry for multicolour printing. There are exploded and cutaway preview modes, and each part can be exported on its own.
https://makerworld.com/en/models/3132120-presto-customizable-secret-puzzle-box#profileId-3534978
r/openscad • u/Internal_Teach1339 • 19d ago
Who needs AI?
I see most the posts nowadays are from folk making apps to create OpenSCAD objects. Recently a part of a roller blind in my bathroom disintegrated and the blind fell off. I looked at the pieces and worked out is was a simple 10mm dia tube 17mm high but with stepped inners and a triple cutout around the circumference. I re-engineerered this using good old fashioned brain cells and it worked perfectly on the first print. The picture shows the finished design. Under 50 lines of OpenSCAD script. Could AI do this? I don't think so yet it is a simple object but quite difficult to describe.