Skip to content

Commit

Permalink
Fix geometry geomplate
Browse files Browse the repository at this point in the history
  • Loading branch information
tpaviot committed May 27, 2024
1 parent f095dfc commit fbc523e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions examples/core_geometry_geomplate.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,10 +277,9 @@ def build_curve_network(event=None):
"""
print("Importing IGES file...")
iges_file = os.path.join("..", "assets", "models", "curve_geom_plate.igs")
iges = read_iges_file(iges_file)

iges_shapes = read_iges_file(iges_file)
print("Building geomplate...")
topo = TopologyExplorer(iges)
topo = TopologyExplorer(iges_shapes[0])
edges_list = list(topo.edges())
face = build_geom_plate(edges_list)
print("done.")
Expand Down

0 comments on commit fbc523e

Please sign in to comment.