diff --git a/crates/fj-core/src/geometry/repr/tri_mesh.rs b/crates/fj-core/src/geometry/repr/tri_mesh.rs index d6e5bf00a..2478d6330 100644 --- a/crates/fj-core/src/geometry/repr/tri_mesh.rs +++ b/crates/fj-core/src/geometry/repr/tri_mesh.rs @@ -12,6 +12,13 @@ use crate::geometry::{traits::GenTriMesh, Geometry, Tolerance}; /// geometry system is ongoing. pub struct TriMesh {} +impl TriMesh { + /// # Construct an empty triangle mesh + pub fn empty() -> Self { + Self {} + } +} + /// # Convert a point in surface coordinates to global coordinates pub fn convert_point_surface_to_global( surface: &dyn GenTriMesh,