Blog | Community | Contribution Guide
Fornjot is an early-stage project to create a next-generation, code-first CAD application. Because the world needs another CAD program.
For an introduction of what the project aims to achieve, please check out the website.
Fornjot is supported by @webtrax-oz, @lthiery, @Yatekii, @martindederer, @hobofan, @ahdinosaur, @thawkins, @bollian, @nullstyle, @rozgo, @sucaba, @jessebraham, @Kethku, @sanxiyn, @seigel, @seanjensengrey, @MattOslin, @benwis, @happysalada, @jminer, @reivilibre, @jeevcat, @U007D, @tachiniererin, and my other awesome sponsors. Thank you!
Please consider supporting me too, to help make Fornjot sustainable long-term.
Fornjot is under active development, but still experimental. Efforts are currently focused on providing a stable set of basic CAD features.
If you are interested in Fornjot and are considering to use it, you should fully expect to run into limitations pretty much immediately. Unless you are willing to contribute to its development, it would be better to wait for a year or ten, to let it mature. For more information on current limitations and improvements that could be implemented in the near future, check out the open issues.
To learn about the project's longer-term direction, please refer to the roadmap.
Models are defined as Rust code. To ensure fast compile times, they are compiled separately, and loaded into the Fornjot application as a plug-in.
use fj::syntax::*;
#[fj::model]
pub fn model(
#[param(default = 1.0, min = inner * 1.01)] outer: f64,
#[param(default = 0.5, max = outer * 0.99)] inner: f64,
#[param(default = 1.0)] height: f64,
) -> fj::Shape {
let outer_edge = fj::Sketch::from_circle(fj::Circle::from_radius(outer));
let inner_edge = fj::Sketch::from_circle(fj::Circle::from_radius(inner));
let footprint = outer_edge.difference(&inner_edge);
let spacer = footprint.sweep([0., 0., height]);
spacer.into()
}
This is the code for the spacer model.
At this point, Fornjot supports basic 2D shapes (sketches made from lines segments, circles, and limited combinations between them) and sweeping those 2D shapes along a straight path to create a 3D shape.
The short- to mid-term priority is to provide CSG support, more flexible sketches, and more flexible sweeps (along a circle or helix). Long-term, the plan is to keep adding more advanced CAD modeling features, to support even complex models and workflows.
As of this writing, Fornjot runs on Linux, Windows, and macOS. The project is primarily developed on Linux, so the other platforms might be subject to bugs. If you want to help out, regularly testing on Windows and macOS, and reporting bugs, is a good way to do so.
Short- to mid-term, the plan is to add support for the web platform, so Fornjot can run in browsers. Long-term, the plan is to additionally support the major mobile platforms.
Exporting models to both the 3D Manufacturing Format (3MF), which is used in 3D printing, and STL is supported.
Since Fornjot uses Rust as the language for defining models, a Rust toolchain is required to use Fornjot.
To install Fornjot itself, you have the following options:
- Download a binary from the latest release.
- Compile the latest release yourself:
cargo install fj-app
- Compile a development version from this repository:
cd path/to/repo; cargo install --path crates/fj-app
While the Fornjot application is a graphical application that opens a window and displays a 3D view of your model, it can currently only be started from the command-line. The instructions below assume that you have the Fornjot application installed somewhere on your path, under the name fj-app
.
There's a Nix flake in the subdirectory ./nix
which contains a devshell environment (via nix develop
or nix-shell
) and the package fj-app
.
It can be run/tested with a flake enabled nix via nix run github:hannobraun/Fornjot?dir=nix
or with legacy nix in the directory ./nix
, nix-build
.
Models are Rust libraries that depend on the fj
library, which they use to define the geometry. Furthermore, they need to be built as a dynamic library. Just use the examples in the models/
directory as a template to define your own.
To view a model, run:
fj-app my-model
This will usually compile and load the model in the my-model/
directory. If there is a configuration file (fj.toml
) available, it might define a default path to load models from that is different from the current working directory. This is the case in the Fornjot repository.
Rotate the model by pressing the left mouse button while moving the mouse. Move the model by pressing the right mouse button while moving the mouse. Zoom with the mouse wheel.
Toggle model rendering by pressing 1
. Toggle mesh rendering by pressing 2
. Toggle rendering of debug data by pressing 3
.
To export a model to a file, run:
fj-app my-model --export my-model.3mf
The file type is chosen based on the file extension. Both 3MF and STL are supported.
Models can define parameters that can be overridden. This can be done using the --parameters
argument:
fj-app my-model --parameters "width=3.0,height=5.0"
If you are interested in Fornjot, please consider joining the community. We'd love to have you!
Please check out the community page on the website for information on where to find us!
If you are interested in helping out, just fork one of the GitHub repositories and submit a pull request:
If you don't know what to work on, check out the good first issues
. To get an overview over current priorities, take a look at the open milestones.
If you need some more guidance, check out the contribution guide, or just ask!
This project is open source, licensed under the terms of the Zero Clause BSD License (0BSD, for short). This basically means you can do anything with it, without any restrictions, but you can't hold the authors liable for problems.
See LICENSE.md for full details.