Skip to content

Commit 5091076

Browse files
committed
initial implementation of csgrs primitives on top of NDSP, everything's still broken
1 parent 6e57b14 commit 5091076

File tree

2 files changed

+759
-7
lines changed

2 files changed

+759
-7
lines changed

src/lib.rs

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
#![warn(clippy::missing_const_for_fn, clippy::approx_constant, clippy::all)]
3131

3232
pub mod errors;
33-
pub mod float_types;
33+
pub mod math_ndsp;
3434
pub mod io;
3535
pub mod mesh;
3636
pub mod nurbs;
@@ -51,11 +51,5 @@ pub mod wasm;
5151
))]
5252
compile_error!("Either 'delaunay' or 'earcut' feature must be specified, but not both");
5353

54-
#[cfg(any(
55-
all(feature = "f64", feature = "f32"),
56-
not(any(feature = "f64", feature = "f32"))
57-
))]
58-
compile_error!("Either 'f64' or 'f32' feature must be specified, but not both");
59-
6054
#[cfg(test)]
6155
mod tests;

0 commit comments

Comments
 (0)