1pub mod attach;
12pub mod discretize;
13pub mod hatch;
14pub mod simplify;
15pub mod triangulate;
16
17pub use attach::{Tessellated, polyline_of, tessellate, triangulation_of};
18pub use discretize::{
19 Deflection, Polyline, discretize, discretize_on_surface, discretize_planar, is_straight,
20 is_straight_planar,
21};
22pub use hatch::hatch_face;
23pub use simplify::{Simplified, Target, simplify};
24pub use triangulate::{
25 EdgeChords, edge_chords_for, face_boundary, inside_boundary, inside_boundary_with,
26 polyline_of_edge, triangulate, triangulate_face, triangulate_face_with,
27};