Skip to content
Snippets Groups Projects
  1. Nov 02, 2009
  2. Oct 07, 2009
    • Matti Pellika's avatar
      · 4bf5a44f
      Matti Pellika authored
      Clean-up & small syntax change for homology commands.
      4bf5a44f
  3. Oct 06, 2009
    • Matti Pellika's avatar
      · 456b95c7
      Matti Pellika authored
      Added homology computation tutorial as tutorial/t10.geo.
      456b95c7
  4. Apr 04, 2009
  5. Jan 05, 2009
  6. Dec 28, 2008
  7. Nov 06, 2008
  8. Oct 25, 2008
  9. Aug 13, 2008
  10. Sep 28, 2007
  11. Feb 04, 2007
    • Christophe Geuzaine's avatar
      · f15018c4
      Christophe Geuzaine authored
      - print num vert+elm after each generation
      - reork tutorial a bit
      f15018c4
  12. Dec 18, 2006
  13. Dec 03, 2006
    • Christophe Geuzaine's avatar
      · b1104486
      Christophe Geuzaine authored
      Layers{N,1} can now be written simply as Layers{N}
      b1104486
  14. Nov 29, 2006
    • Christophe Geuzaine's avatar
      · 7282e185
      Christophe Geuzaine authored
      physical entities can now be defined using a string instead of a number (and
      there is a new field $PhysicalNames in the .msh format to keep track of these
      strings)
      7282e185
  15. Nov 28, 2006
    • Christophe Geuzaine's avatar
      · 5c742ae5
      Christophe Geuzaine authored
      - re-add names in visibility broswer (will change in the future)
      - shorten tutorials
      5c742ae5
  16. Nov 27, 2006
  17. Aug 13, 2006
  18. Apr 18, 2006
  19. Jan 31, 2006
  20. Jan 14, 2006
    • Christophe Geuzaine's avatar
      · a9c3f6a1
      Christophe Geuzaine authored
      fixed ugly extrusion syntax (finally!)
      
      extrusions are now specified in the same way as all other transformations
      (the old syntax is still available, but is deprecated)
      a9c3f6a1
  21. Dec 17, 2005
    • Christophe Geuzaine's avatar
      · f60c2846
      Christophe Geuzaine authored
      refactored Opengl_Window.handle()
      
      should behave exactly like the old version, but now it is at least (somewhat)
      readable and ready to be generalized for more complicated projection matrices
      f60c2846
  22. Nov 29, 2005
  23. Mar 12, 2005
    • Christophe Geuzaine's avatar
      · 150f017b
      Christophe Geuzaine authored
      a little more work on the axes stuff: enable global axes for the geometry and
      the mesh, too. We can finally get rid of the ugly old "moving axes" bit.
      
      (+ reverted changes in unproject: need to be more careful since unproject
      can be called outside Draw())
      150f017b
  24. Jan 02, 2005
    • Christophe Geuzaine's avatar
      · 39f49fb6
      Christophe Geuzaine authored
      add special token "Today" to return the current date
      39f49fb6
  25. Dec 29, 2004
  26. Dec 28, 2004
    • Christophe Geuzaine's avatar
      · c0c548f2
      Christophe Geuzaine authored
      by convention, for 2d strings, assume that a coord value > 99999 means the
      center of the window
      c0c548f2
    • Christophe Geuzaine's avatar
      · e4420789
      Christophe Geuzaine authored
      add title
      e4420789
  27. Nov 02, 2004
  28. Jul 02, 2004
    • Christophe Geuzaine's avatar
      · 1f958cc4
      Christophe Geuzaine authored
      pretty print
      1f958cc4
    • Christophe Geuzaine's avatar
      · 4ddcaea1
      Christophe Geuzaine authored
      document the optional second list in Layers
      4ddcaea1
    • Christophe Geuzaine's avatar
      · 2696e0b8
      Christophe Geuzaine authored
      Removed the old test on ZonLayer: we actually WANT to use the automatic
      volume if we set the layer number to 0. This is really pretty nice: we
      can now get either automatic or manual numebring in all the extrusion
      commands.
      2696e0b8
    • Christophe Geuzaine's avatar
      · 7379efb3
      Christophe Geuzaine authored
      - All extrusion commands now return a list of 2 numbers (instead of 1):
        the first, as before, is the number of the "top" of the extruded region
        (i.e., a point for extrude point, a line for extrude line, ...), the
        second is the number of the "body" of the extruded region (i.e., a
        line for extrude point, a surface for extrude line, ...).
      
      - "Extrude Surface" now always creates a new volume (automatically),
        EVEN WHEN THERE IS NO LAYERS SPECIFICATION. This makes it consistent
        with "Extrude Point" and "Extrude Line", which always create new
        curves and surfaces, respectively.
      
        Important Note: you will have to modify your old .geo files to avoid
        duplicate volume definitions if you use "Extrude Surface" without
        extruding the mesh (i.e., without the "Layers" command). These
        duplicate volumes would be harmless, but they would srew up your
        physical volume definitions later on...
      
        * Solution 1: use the new volumes (recommended). To do this, just
        remove your old extra volume definitions and let Gmsh create the
        extruded volumes for you. (To retrieve the volume number created by
        Gmsh, use "aa[] = Extrude Surface {...};;": the volume number is
        "aa[1]".)
      
        * Solution 2: keep the old volumes.
      
        a) clean way: retrieve the new volume number (aa[] = Extrude Surface
        {...};;) and delete the new volume with "Delete { Volume aa[1]; }"
      
        b) dirty (but handy) way: since, in order to create the new volumes
        with the less impact possible, Gmsh uses "low" numbers (actually,
        forcing "Geometry.OldNewreg=0") for the new volumes, just remove all
        "low number volumes". For example, if you have 4 "Extrude Surface" in
        your file, you can then just do "Delete{ Volume {1:4}; }"
      
      Voila :-)
      7379efb3
  29. Jun 26, 2004
    • Christophe Geuzaine's avatar
      · 80495600
      Christophe Geuzaine authored
      refactor the netgen code in a dedicated class
      80495600
    • Christophe Geuzaine's avatar
      · 5b0535a9
      Christophe Geuzaine authored
      Merged Netgen 4.3.1: a Delaunay/Frontal 2D/3D mesh generator.
      
      Thanks a lot to Nicolas Tardieu for this!
      5b0535a9
  30. May 22, 2004
    • Christophe Geuzaine's avatar
      · 1e0be4b2
      Christophe Geuzaine authored
      Small changes inspired by Wednesday's discussions:
      
      - Mac only: Gmsh now publishes its "file types"... That means that
        geo/msh/pos files now have nice icons, and that you can double-click
        on a geo/msh/pos file in the Finder to open it :-)
      
      - removed support for fltk 1.0 (wasn't compiling anymore anyway)
      
      - doubled the timout in GmshServer (2->4s): this seems to help on
        Windows (thanks to jkools@veeco.com)
      
      - added warnings in the docs about the Attractor feature
      
      - increased WB by 1 pixel in the GUI
      
      - replaced more Msg(FATAL) with Msg(ERROR) where it makes sense
      1e0be4b2
Loading