Skip to content
Snippets Groups Projects
Select Git revision
6 results Searching

Visibility.cpp

Blame
  • Forked from gmsh / gmsh
    Source project has a limited visibility.
    heal.py 210 B
    import gmsh
    
    gmsh.initialize()
    
    # load step file
    gmsh.open('as1-tu-203.stp')
    
    # get all model entities
    ent = gmsh.model.getEntities()
    
    gmsh.model.occ.healShapes()
    
    gmsh.model.occ.synchronize()
    
    gmsh.finalize()