mirror of
https://github.com/Theaninova/Bampy.git
synced 2026-01-07 01:02:48 +00:00
14 lines
207 B
Rust
14 lines
207 B
Rust
use std::fmt::Debug;
|
|
|
|
pub mod base_slices;
|
|
pub mod line;
|
|
pub mod mesh;
|
|
pub mod slice_rings;
|
|
pub mod split_surface;
|
|
pub mod triangle;
|
|
|
|
#[derive(Debug)]
|
|
pub struct SlicerOptions {
|
|
pub layer_height: f64,
|
|
}
|