FreeCAD: Open-source 3D parametric modeler
31–40 of 73 posts
Re: FreeCAD: Open-source 3D parametric modeler
#32Earlier quoted context omitted.
> some really inexcusable design problems, on a fundamental level Can you be more specific? I understand that the Topological Naming Problem is big (discussed in https://www.youtube.com/watch?v=QSsVFu929jo ), but as I understand it this is being fixed in the RealThunder branch ( https://bit.ly/3iBzQly ), and fixes may be flowing from this into FreeCAD 0.2.
My complaint is that it is extremely modal and as a result not very friendly, not intuitive even to a relatively experienced CAD user. I’ve used a variety of CAD and it just really didn’t click. I know it’s open source, so not going to be as UX oriented, but still. I would love to be proved wrong. If there’s something I’m missing please share.
Re: FreeCAD: Open-source 3D parametric modeler
#33Earlier quoted context omitted.
> some really inexcusable design problems, on a fundamental level Can you be more specific? I understand that the Topological Naming Problem is big (discussed in https://www.youtube.com/watch?v=QSsVFu929jo ), but as I understand it this is being fixed in the RealThunder branch ( https://bit.ly/3iBzQly ), and fixes may be flowing from this into FreeCAD 0.2.
A fundamental problem is that OpenCASCADE, despite being the most advanced open source CAD kernel, does kinda suck. It's single-threaded (FreeCAD has it on the main thread so any long operation blocks the entire UI) and it's… rather buggy. Recent fun example I've encountered: doing a fillet in two places at the same time can result in either an unhelpful "resulting shape is invalid" or a crash inside OpenCASCADE, dep…
Re: FreeCAD: Open-source 3D parametric modeler
#34I have pretty mixed feelings about FreeCAD, having used it for 100+ hours across a few different projects. It’s wonderful to have a open-source alternative to the expensive CAD software that muscled its way into a near monopoly in academia/industry, but it suffers from some really inexcusable design problems, on a fundamental level. As it is, I don’t think it’s really usable as a serious tool for creating complex ass…
Re: FreeCAD: Open-source 3D parametric modeler
#35I love the idea of FreeCAD so much that I committed pretty much a month to doing all my newer projects in it, watching tutorials, etc… and in the end had to give up and go back to Fusion 360. I’m not some long term die-hard F360 fan either, just a casual hobbyist maker who uses all sorts of tools (I still regularly just whip things up in Tinkercad for the printers) but FreeCAD is just so damn hard to get things from…
CAD/CAM programs are a "hard" type of software to write. I view them as similar in difficulty to free operating systems in technical difficulty and scope of the project. Before Linux there were only a few options for Unix-like OSs (Minix, Coherent, etc), but none of them particularly good for much except for academic purposes. Real work still took a licensed copy of Unix.
There still hasn't been a similar project to produce a CAD system (not just 3d modeling, but parametric CAD) created that's open source. There are some great programs for 2d cad, for running machine tools and CNC routers, but beyond things like FreeCAD there's nothing available in the open source space that's comparable to even the cheapest commercial offering.
Re: FreeCAD: Open-source 3D parametric modeler
#36i've used FreeCAD but didn't like the UI so then I switched to OnShape. I used OnShape for a while but then switched over to Fusion360 because the vast majority of the people in my hobby ( amateur rocketry ) use Fusion360. Using the same tool as everyone else really helps when asking questions and reading tips/tricks.
That's part of why it hurt so much when Autodesk crippled the hobbyist version of Fusion 360. All the stuff it can't do now no one can help you learn.
Re: FreeCAD: Open-source 3D parametric modeler
#37I have pretty mixed feelings about FreeCAD, having used it for 100+ hours across a few different projects. It’s wonderful to have a open-source alternative to the expensive CAD software that muscled its way into a near monopoly in academia/industry, but it suffers from some really inexcusable design problems, on a fundamental level. As it is, I don’t think it’s really usable as a serious tool for creating complex ass…
> some really inexcusable design problems, on a fundamental level Can you be more specific? I understand that the Topological Naming Problem is big (discussed in https://www.youtube.com/watch?v=QSsVFu929jo ), but as I understand it this is being fixed in the RealThunder branch ( https://bit.ly/3iBzQly ), and fixes may be flowing from this into FreeCAD 0.2.
I discovered the issue in a middle of a design where I tried to change what I thought was a parametric piece. It unrecoverable blew up everything.
I kind of lost trust in it after that. I ended up making a backup for every step on top of the regular backups, like: piece_name-step-1… etc.
I discovered the real thunder branch too late.
Re: FreeCAD: Open-source 3D parametric modeler
#38I have pretty mixed feelings about FreeCAD, having used it for 100+ hours across a few different projects. It’s wonderful to have a open-source alternative to the expensive CAD software that muscled its way into a near monopoly in academia/industry, but it suffers from some really inexcusable design problems, on a fundamental level. As it is, I don’t think it’s really usable as a serious tool for creating complex ass…
For programmers I highly recommend OpenSCAD or Cadquery, which let you write code to build your models instead of using GUI. With this approach, "parametric" comes naturally, and so you don't need to learn a special constraint system, it's just your code (and a bit of math).
Cadquery was a bit hard to get started with being essentially a bunch of python scripts, but it's also more versatile and more powerful than OpenSCAD, and has a good collection of examples in their docs. OpenSCAD is still great for e.g. building simple models for 3D printing.
Re: FreeCAD: Open-source 3D parametric modeler
#39Fusion360 is disgusting with their relentless marketing. My email was bombarded and I got 2 phone calls from sales people... Errr survey people...
User interface was super Intuitive after skimming a tutorial.
I'm no advanced user, but I've done basic CAD in Catia, nx, solid works, and probably a few more over the years. Heck I prefer FreeCAD for the simplicity.
If we need something FreeCAD can't do, I can get other software or outsource it.
It's extremely liberating to not be reliant on always rising prices.
Re: FreeCAD: Open-source 3D parametric modeler
#40I love the idea of FreeCAD so much that I committed pretty much a month to doing all my newer projects in it, watching tutorials, etc… and in the end had to give up and go back to Fusion 360. I’m not some long term die-hard F360 fan either, just a casual hobbyist maker who uses all sorts of tools (I still regularly just whip things up in Tinkercad for the printers) but FreeCAD is just so damn hard to get things from…
I don't trust Autodesk and I bailed from F360 when they crippled the hobbyist version, but I ended up having to go back to a single user subscription for now. CAD/CAM programs are a "hard" type of software to write. I view them as similar in difficulty to free operating systems in technical difficulty and scope of the project. Before Linux there were only a few options for Unix-like OSs (Minix, Coherent, etc), but no…