pub fn generate_rim_advanced(
inner_mesh: &Mesh,
vertex_offset: usize,
) -> RimResultExpand description
Generate rim faces with full boundary analysis and reporting.
This function:
- Analyzes boundary topology to find all loops
- Validates the boundary (checks for non-manifold vertices)
- Generates rim faces for each valid loop
- Reports any issues encountered
§Arguments
inner_mesh- The inner surface meshvertex_offset- Offset to add to vertex indices for the outer surface
§Returns
A RimResult with generated faces and analysis details.