Skip to content
Snippets Groups Projects
  1. Mar 21, 2008
  2. Mar 20, 2008
  3. Mar 19, 2008
  4. Mar 18, 2008
  5. Mar 11, 2008
    • Christophe Geuzaine's avatar
      5a182522
    • Christophe Geuzaine's avatar
      cleanup CTX.files · 4b575910
      Christophe Geuzaine authored
      4b575910
    • Christophe Geuzaine's avatar
      · 9139fe13
      Christophe Geuzaine authored
      - new GmshInitialize(argc, argv) and GmshFinalize() for library version,
        now also used throughout
      
      - GModel::mesh(dimension)
      
      We now have a simple API to do basic stuff. We'll interface more as we go (optimize, adapt, etc.).
      
      #include <stdio.h>
      #include <gmsh/Gmsh.h>
      #include <gmsh/GModel.h>
      #include <gmsh/MElement.h>
      
      int main(int argc, char **argv)
      {
        GmshInitialize(argc, argv);
        GModel *m = new GModel();
        m->readGEO("./tutorial/t5.geo");
        m->mesh(3);
        for(GModel::riter it = m->firstRegion(); it != m->lastRegion(); ++it){
          printf("volume %d contains %d elements:\n", (*it)->tag(), (*it)->getNumMeshElements());
          for(unsigned int i = 0; i < (*it)->getNumMeshElements(); i++)
            printf(" %d", (*it)->getMeshElement(i)->getNum());
          printf("\n");
        }
        m->writeMSH("test.msh");
        m->writeUNV("test.unv");
        GmshFinalize();
      }
      9139fe13
  6. Mar 10, 2008
  7. Mar 05, 2008
  8. Feb 24, 2008
  9. Feb 23, 2008
  10. Feb 22, 2008
  11. Feb 21, 2008
  12. Feb 18, 2008
  13. Feb 17, 2008
  14. Feb 16, 2008
  15. Feb 07, 2008
  16. Feb 05, 2008
    • Christophe Geuzaine's avatar
      · 4b81c264
      Christophe Geuzaine authored
      removed GFace::GraphicsRep and reimplemented it using the more general
      STL vertex array
      4b81c264
    • Christophe Geuzaine's avatar
      · a5bac156
      Christophe Geuzaine authored
      rewrote Pplugin(Triangulate) to use our in-house divide and conquer algo
      removed triangle from contrib
      reactivated OCC STL meshing
      a5bac156
  17. Jan 30, 2008
  18. Jan 28, 2008
  19. Jan 25, 2008
  20. Jan 23, 2008
  21. Jan 22, 2008
  22. Jan 20, 2008
  23. Jan 19, 2008
    • Christophe Geuzaine's avatar
      · c6c11d66
      Christophe Geuzaine authored
      more work on header pollution
      c6c11d66
    • Christophe Geuzaine's avatar
      · a86ef74c
      Christophe Geuzaine authored
      start reducing header pollution (removed Gmsh.h + cleaned up GModel & co)
      a86ef74c
Loading