This website has been archived and is no longer being updated. Mostly because my life took a different turn at some point, with less making/manufacturing stuff to write about.

Check out hannobraun.com, to see what I'm up to these days.

Contact me: hello@hannobraun.com

Hanno Braun

making and small-scale manufacturing

🢐🢐 back to Notes

My Criteria for CAD Software

Published: 2021-10-26 (updated 2022-01-10)

I've been doing CAD modeling for a while now, and although I'm far from being an expert, I have developed opinions on how CAD software should work, and what it should provide. In this note, I lay out the criteria by which I evaluate CAD software.

Before I start, I'd like to emphasize two things:

But enough prelude. Let's get into it.

Criteria

Overview

Before I go into detail, here's a short overview of the criteria I have come up with so far:

  1. The software should be developed by a healthy project. Ideally, it is open source, actively developed, has a vibrant community, documentation is available, and it is packaged for a wide variety of platforms.
  2. Models should be defined as code. The language that code is written in should be easy to use, powerful, and robust.
  3. Modeling features, like Constructive Solid Geometry, extrude/sweep operations, ability to reference and manipulate existing geometry, constraint-based modeling, and fillets/chamfers should be available.
  4. The software should be conducive to working conveniently and efficiently.
  5. The UI should provide various insightful points of view of your model.
  6. The software should provide versatile export options.
  7. Finally, the CAD application should be fast, to support even complex models.

1. Project Health

Before getting into a new CAD program, it's worth considering how it is developed, and how viable that development is long-term. While many people make a whole lifestyle out of never upgrading anything, I'm firmly of the opinion that life is change, and to thrive we have to adapt. Doing that is much harder when using stagnant software.

There are a few sub-criteria that I judge the health of a software project by:

2. Models Defined as Code

I believe that CAD models should be defined as code. But that alone isn't enough. The language that this code is written in should fulfil several criteria:

  1. It should be easy to use. Some general-purpose programming languages are very complex, syntactically heavy, or cumbersome (sometimes for good reasons). I don't think a lot of complexity is needed for this particular use case though. The language should put few hurdles in front of the CAD designer as is practical.
  2. At the same time, the language shouldn't be simplistic. Some models still benefit from non-trivial algorithms, and the language should be powerful enough to support that.
  3. Programming is an error-prone activity. To alleviate that, the language should be robust, meaning it should prevent as many errors as possible.

These three attributes can be in conflict with one another. Lots of Code-CAD programs use dynamically types languages that are easy to use and powerful, but not robust. Languages that are robust are often not easy to use.

Check out my note about Code-CAD software for an overview over existing solutions.

3. Modeling Features

There are some modeling features that I consider crucial to have:

This list is surely incomplete, and I will expand it as I remember and learn about more features.

4. Convenience and Efficiency

The overall user experience of a CAD program should facilitate a convenient and efficient way of working. This means the UI in general should be easy to use. In Code-CAD applications that come with their own editor, this also applies to the editing experience.

Even in Code-CAD applications, a powerful graphical user interface can be an advantage. I'd like to see a hybrid approach, where code is the source of truth, but the GUI can be used to select features, whose origin is then marked in the code. Or to draw sketches and apply constraints, for which code is then generated.

5. Insightful Points of View

It should be easy to view all different aspects of your model, not just the final result. Like components of an assembly, or intermediate stages of modeling.

This seems to be pretty standard in regular GUI-based CAD software, but not in Code-CAD software.

6. Versatile Export Options

A CAD application that doesn't allow you to export your model to external file formats is of limited use. For use with any kind of CNC machine, the CAD software should support export to the preferred formats for the type of CNC machine (I only have direct experience with 3D printers, for which I prefer 3MF).

Exporting images of the model, for use in external media, should also be supported. As should engineering drawings, which can be very useful to have, if building the modeled item involves manual steps.

Ideally, I'd like to be able to include exports from the program in external documents, like web pages. In the form of interactive views of certain aspects of the model, drawings, or even text documentation from the model. This can be very useful for creating project presentations, assembly instructions, or other material.

7. Performance

Performance is one of those aspects of software that tends to go unnoticed, until it's lacking. When it comes to supporting complex models, or exporting models at a high resolution, it becomes critical that the CAD application is capable of high performance.

Conclusion

So there it is. The criteria by which I evaluate CAD software. Unfortunately, I haven't found a single CAD application yet that meets all of them. The search continues (and in the meantime, I'm developing my own).

If you think I'm missing something, please let me know. I'm always interested in learning more about the topics I write about.

Changes

2021-10-26 Initial release.
2021-10-28

Added project health as criterion.

2021-11-01

Replaced criterion about 2D sketches with more general criterion about user experience.

2022-01-10

Major update. Added new criteria, merged and updated some existing ones, and changed their order.

🢐🢐 back to Notes