Recently I’ve been having feelings about moving away from Fusion 360. The combination of cloud app / filesystem and their demonstrated willingness to remove features and add arbitrary limitations (eg. 10 editable model limit) makes me feel uneasy about using it. To be clear I’m grateful that AutoDesk provide a free license at all, and it’s an incredible piece of software, but I have a sense of vulnerability while using and honing my skills in it. If you’ve ever rented a house you’ll know the feeling - you quite don’t feel like it’s really your home, if the landlord wants to make renovate or redecorate you don’t have any choice and you could be evicted at any moment.

So I tried FreeCAD. At first, I have to say that it felt a little like stepping out of a spaceship (Fusion) and banging rocks together like a caveman. It’s not that you can’t do (most) of the same things as an enterprise CAD package, but the killer feature of Fusion is the level of intuitiveness and “it just works” that makes FreeCAD seem like trying to write Latin.

After a week of on-and-off learning I was not sure I wanted to continue. Even after getting comfortable with the basics, frustration levels would spike to 11 sometimes. The main issue I kept running into was that altering a previous feature would break everything that came after, requiring a varying amount of work to fix. The FreeCAD wiki suggests ways to mitigate this but many of them are un-intuitive and/or inconvenient. After some googling this seems to be caused by a pretty difficult to solve issue called the “Topological Naming Problem” (where FreeCAD can’t keep track of surfaces / edges / vertexes in a stable fashion when features are changed). Then I came across this blog post that pointed out a fix has actually been developed earlier this year. A developer by the name of RealThunder has created a fork of FreeCAD called “Link Branch” which can track topology in a (more) stable fashion.

I tried this branch and was blown away by how much more usable it is. Not only can it handle changes to past features almost perfectly, but I can create multiple bodies from a single sketch (not possible before) and there are other UI tweaks that make creating features easier such as the ability to preview fillets and chamfers at the same time as selecting their edges. I’m not totally sure which of these features are unique to Link branch vs which might be pre-release in the main branch, but certainly the topology naming fix is unique to Link.

So if you have tried FreeCAD in the past and been frustrated, or if Fusion’s past free license changes or price increases are making you uneasy, give the Link Branch a try! Downloads are available in the releases page.

  • @Confuserated
    link
    English
    95 months ago

    One body per sketch was always a deal breaker for me, so it’s good to hear that limitation is gone.

    Do you know if sketches are still required to represent a single continuous face? For example, 3 concentric circles would not be allowed because it is ambiguous which parts are “surface” and which are “holes”. F360 doesn’t impose this limitation because it allows you to select individual sketch faces to move into 3D space, whereas FreeCAD considers that a single operation on the entire sketch.

    • @dual_sport_dork
      link
      English
      13
      edit-2
      5 months ago

      FreeCAD does indeed perform a single operation on a given sketch, but I think the problem you’re encountering is the fact that FreeCAD cannot perform any operation to solidify a sketch that would result in more than one discontiguous solid.

      You can, for example, totally extrude 3 concentric circles into a pad provided they intersect another solid surface that at the very least spans the gap between the edges of the circles. Your example in particular results in a cylinder with a hole in it, and another cylinder centered in that hole. The geometry is not actually ambiguous:

      The above is just one sketch to create the rectangle, and then the other sketch is precisely what you described, three concentric circles of random diameter:

      I did this in the bog standard 0.21 release, not the Realthunder fork, and with no other additions, mods, or workbenches.

      • @kizzardOP
        link
        English
        95 months ago

        FreeCAD cannot perform any operation to solidify a sketch that would result in more than one discontiguous solid.

        Link can do this with a single sketch+pad (which is what I was referring to in the original post)

        >