Show HN: LuaCAD – Parametric CAD Scripted in Lua

(luacad.ad-si.com)

104 points | by adius 1 day ago

9 comments

  • fhn 1 day ago
    Does this have a web-based playground? I find https://www.pythonscad.org/playground/ to be nice to try out the project.
    • adius 15 hours ago
      I was actually able to get a first version released just now: https://luacad.ad-si.com/playground It's still rather bare bones and won't work well for large models, but otherwise it should be fully functional!
    • adius 1 day ago
      Agreed! I’m already working on it, but it’s not quite ready yet. ETA is 1-2 weeks.
  • tolugenius 1 day ago
    Really interesting! I actually use freecad so I'm use to that layer of the process but I'll check this out. Also good to see the work being done in modeling software these days
  • vrinsd 14 hours ago
    Honest question here -- for doing 3D parametric design, is the "programmatic" approach a good thing? If you compare doing a design in LuaCAD to something like Solidworks or ProE, can you get to the end result faster, and easier?
    • adius 13 hours ago
      I've tried to get into Solidworks, Fusion, and FreeCAD several times, but every time I come back to programmatic CAD. It just better matches how I think about 3D design I guess. Also, I love that there can't be any hidden state or constraints -everything is fully defined by your code and fully visible.

      Just give it a try, I guess, and see if it works for your use cases!

  • psd1 1 day ago
    A scripting engine is a great feature in cad, you should be proud of your achievement. The reason I'm not personally interested is that i used lisp in AutoCAD in the 00s. What i like most about lua is that it's not php. It's a sane choice, but insipid.

    https://www.cadtutor.net/tutorials/autolisp/quick-start.php

  • manny_rat 1 day ago
    Love it! OpenSCAD has very painful syntax. Is it possible to easily do bevels/chamfers or does it have the same limitations as OpenSCAD there?
    • adius 1 day ago
      Thanks! It natively supports all BOSL2 functions which include a chamfer argument (https://github.com/revarbat/BOSL/wiki#common-arguments). So that makes it quite straightforward to add chamfers to everything!
      • kragen 1 day ago
        Can you fillet unions? Like, if I union a cube with a smaller cube sticking out of its side, can I make a fillet so that the edge where the two cubes' faces intersect doesn't become a stress concentration point for cracks to start at? This is OpenSCAD's primary weakness from my point of view.
      • addaon 1 day ago
        Which is what separates us from the animals.
      • adastra22 1 day ago
        Quite easy to add chamfers to everything in the CAD file. But your manufacturing guy is going to strangle you...
        • gunalx 1 day ago
          So ill strangle myself while the 3d printer goes back and forth.
  • WillAdams 1 day ago
    Is it able to access the file system and write/read files?

    I've been doing that via PythonSCAD for my current project https://github.com/WillAdams/gcodepreview and it might be interesting to do a re-write in another language.

    • adius 1 day ago
      Yes, it executes in a full fledged Lua environment. So you can do all the things you expect do be able to do with Lua!

      I’d pick Lua over Python any day, but maybe that’s just me. ;-)

      • WillAdams 1 day ago
        I've had good success w/ using Lua in LuaLaTeX, so hopefully a good fit for me to exercise my programming chops. I think it will be interesting to maintain two parallel versions for comparison/contrast. Thanks!
  • adastra22 1 day ago
    Isn't OpenSCAD's limited (non-Turing complete) language a feature?
    • adius 1 day ago
      I'm pretty sure it's Turing complete by now. If it was conceptualized as a limited language and only became a full fledged programming language over time, it would certainly explain all its weird warts. (Here is some more details: https://github.com/ad-si/LuaCAD#why-lua) I guess 3D modeling is just too complex for a simple, but limited DSL.

      Lua is easier to use, faster, and more feature-rich. It's one of those rare occasions when a new solution is actually better in every single way.

      • adastra22 1 day ago
        In the pedantic sense, yes. You can use recursive functions with tail-call optimization, or list comprehensions to emulate a universal Turing machine.

        But my point is that OpenSCAD's expression purity and one-way compilation model are purposefully limited, and not historical accident: models are a deterministic function of their parameters, subtrees can be cached and reused during preview without invalidation logic, designs diff and merge as text, etc.

        Sometimes making things "more programmable" is an anti-feature.

        • cjbgkagh 1 day ago
          AFAIK OpenSCAD does not do any meaningful optimizations that are enabled by having a limited DSL, despite that normally being a good reason to do a DSL. And ironically you often have use a general purpose language (python and C++) to do custom optimizations not possible in the DSL.
          • adastra22 8 hours ago
            OpenSCAD is garbage and I'm not going to defend it. But I would prefer if a new CAD engine didn't regress.
    • WillAdams 21 hours ago
      Yes, it is.

      The most notable aspect of this (and one which I've complained in the past) is the inability to write out file, which has security implications.

  • lkjdsklf 1 day ago
    The change history on this repository is fascinating
  • kiops 1 day ago
    [flagged]