Skip to content

Commit

Permalink
feat: add manifold boolean operations
Browse files Browse the repository at this point in the history
feat: add manifold transformation methods

feat: add manifold property and geometry methods

refactor: reorganize manifold modules and imports

docs: update manifold documentation and examples

refactor: remove unused imports and args from manifold
  • Loading branch information
NickUfer committed Nov 30, 2024
1 parent 1359d7b commit 2640ba3
Show file tree
Hide file tree
Showing 3 changed files with 721 additions and 57 deletions.
12 changes: 10 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,19 @@ pub mod types;
pub use bounding_box::*;
pub use error::*;
pub use manifold::Manifold;
#[doc(inline)]
pub use manifold3d_macros as macros;

#[doc(inline)]
pub use manifold3d_sys as sys;
pub use mesh_gl::*;
pub use polygons::*;
pub use quality::*;
pub use simple_polygon::*;

pub mod macros {
pub mod manifold {
#[doc(inline)]
pub use manifold3d_macros::manifold_manage_vertex_properties as manage_vertex_properties;
#[doc(inline)]
pub use manifold3d_macros::manifold_warp as warp;
}
}
Loading

0 comments on commit 2640ba3

Please sign in to comment.