-
-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1853 from hannobraun/fj
Add new `fj` crate
- Loading branch information
Showing
7 changed files
with
72 additions
and
25 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
[package] | ||
name = "fj" | ||
version.workspace = true | ||
edition.workspace = true | ||
description.workspace = true | ||
readme.workspace = true | ||
homepage.workspace = true | ||
repository.workspace = true | ||
license.workspace = true | ||
keywords.workspace = true | ||
categories.workspace = true | ||
|
||
[dependencies] | ||
fj-core.workspace = true | ||
fj-export.workspace = true | ||
fj-interop.workspace = true | ||
fj-math.workspace = true | ||
fj-viewer.workspace = true | ||
fj-window.workspace = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
//! # Fornjot | ||
//! | ||
//! [Fornjot] is an early-stage b-rep CAD kernel written in Rust. The kernel is | ||
//! split into multiple libraries that can be used semi-independently, and this | ||
//! is one of those. | ||
//! | ||
//! This crate serves as a convenient entryway to Fornjot, re-exporting all | ||
//! crates that make up Fornjot. | ||
//! | ||
//! [Fornjot]: https://www.fornjot.app/ | ||
#![warn(missing_docs)] | ||
|
||
pub use fj_core as core; | ||
pub use fj_export as export; | ||
pub use fj_interop as interop; | ||
pub use fj_math as math; | ||
pub use fj_viewer as viewer; | ||
pub use fj_window as window; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters