mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-20 06:58:56 +00:00
Conversion result for breps
This commit is contained in:
@@ -85,18 +85,18 @@ public:
|
||||
builder.begin_surface(points_map.size(), facet_vertices.size());
|
||||
|
||||
for (auto const &point: points_map) {
|
||||
std::cout << "Adding point " << point.first << std::endl;
|
||||
// std::cout << "Adding point " << point.first << std::endl;
|
||||
builder.add_vertex(point.first);
|
||||
}
|
||||
|
||||
for (auto const &facet: facet_vertices) {
|
||||
builder.begin_facet();
|
||||
std::cout << "Adding facet ";
|
||||
// std::cout << "Adding facet ";
|
||||
for (auto const &vertex: facet) {
|
||||
std::cout << vertex << " ";
|
||||
// std::cout << vertex << " ";
|
||||
builder.add_vertex_to_facet(vertex);
|
||||
}
|
||||
std::cout << std::endl;
|
||||
// std::cout << std::endl;
|
||||
builder.end_facet();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user