Skip to content
This repository was archived by the owner on Apr 14, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion include/ringmesh/geomodel/builder/geomodel_builder.h
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ namespace RINGMesh
/*!
* @brief Finish up geomodel building and complete missing information.
*/
void end_geomodel();
virtual void end_geomodel() = 0;

void build_corners_from_lines();

Expand Down Expand Up @@ -164,6 +164,8 @@ namespace RINGMesh

~GeoModelBuilder();

void end_geomodel() final;

void build_surfaces_from_corners_and_lines();

private:
Expand All @@ -177,6 +179,8 @@ namespace RINGMesh
public:
explicit GeoModelBuilder( GeoModel3D& geomodel );

void end_geomodel() final;

void build_regions_from_lines_and_surfaces();
};

Expand Down
Loading