Skip to content

Commit

Permalink
Add cnc module
Browse files Browse the repository at this point in the history
  • Loading branch information
lbirkert committed Aug 14, 2023
1 parent b86f830 commit dac93d9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions crates/kelocam-core/src/cnc/bit.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub trait ToolBit {}
5 changes: 5 additions & 0 deletions crates/kelocam-core/src/cnc/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
//! This crate offers traits and structs to represent CNC tooling & CNC machines.

pub mod bit;

pub use bit::ToolBit;
1 change: 1 addition & 0 deletions crates/kelocam-core/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
pub mod cnc;
pub mod primitives;

0 comments on commit dac93d9

Please sign in to comment.