- Jan 01, 2013
-
-
Christophe Geuzaine authored
-
- Jan 21, 2012
-
-
Christophe Geuzaine authored
-
- Mar 26, 2011
-
-
Christophe Geuzaine authored
- fixed MED node ordering - polished 64 bit Cocoa Mac OS X FLTK version - updated copyright
-
- Dec 05, 2010
-
-
Christophe Geuzaine authored
-
- Feb 10, 2010
-
-
Christophe Geuzaine authored
-
- Jan 07, 2009
-
-
Christophe Geuzaine authored
that the 2 steps are orthogonal * added full-hexa subdivision algo
-
- Dec 29, 2008
-
-
Christophe Geuzaine authored
- fix bb computation to avoid model jumping around when adding points in z=0 plane - pass interpol matrices as ref
-
- Nov 28, 2008
-
-
Jean-François Remacle authored
-
- Nov 21, 2008
-
-
Christophe Geuzaine authored
-
- Aug 11, 2008
-
-
Jean-François Remacle authored
-
- Jul 11, 2008
-
-
Christophe Geuzaine authored
-
- Mar 11, 2008
-
-
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(); }
-
- Feb 17, 2008
-
-
Christophe Geuzaine authored
-
- Dec 03, 2007
-
-
Jean-François Remacle authored
-
- Nov 28, 2007
-
-
Jean-François Remacle authored
-
- Sep 03, 2007
-
-
Christophe Geuzaine authored
lots of improvements to boundary layer generation: we can now constuct and mesh models with entities connected to boundary layer points, edges and faces
-
- Nov 27, 2006
-
-
Christophe Geuzaine authored
-
- Nov 25, 2006
-
-
Christophe Geuzaine authored
-
Christophe Geuzaine authored
cleanup
-
Christophe Geuzaine authored
bidir db: phase 3 -- move all the old geo stuff into Geo/
-
- Jan 06, 2006
-
-
Christophe Geuzaine authored
- new button under the graphic window to temporarily disable mouse selection (speeds-up redrawing of very large models + permits to rotate/zoom-in a model in selection mode even when the whole screen is full of selectable entities--e.g. a surface mesh) - new "lasso" selection mode (to select entities using the same kind of lasso as the lasso zoom: just Ctrl+click, then drag the mouse in selection mode; the shortcuts are the same as for the lasso zoom) - it is now possible to unselect entities using the middle mouse button (only for the creation of physicals at the moment; not sure if it's useful in the other cases) - new button in visibility browser to invert the current selection (very useful e.g. when multiple physical entities are associated with a given elementary entity, in order to "peel" away the model when adding new physicals; cf. philou) - changed meaning of Escape shortcut (cancel lasso or toggle mouse selection) + restore standard fltk Escape handling for all dialog windows - updated copyright string - new mesh label mode (coordinates); all label types are now also available for mesh vertices - added option in 'Print Option' dialog to disable printing of help strings - added a comment string with the date when creating a new file - new snapping grid for adding points in the GUI
-
- Jan 01, 2005
-
-
Christophe Geuzaine authored
copyright update
-
- Feb 07, 2004
-
-
Christophe Geuzaine authored
Update copyright notice
-
- Mar 21, 2003
-
-
Christophe Geuzaine authored
Fix whitespace in copyright headers
-
- Feb 10, 2003
-
-
Christophe Geuzaine authored
Replace fwrite with safe_fwrite
-
- Jan 23, 2003
-
-
Christophe Geuzaine authored
Updated copyright
-
- May 20, 2002
-
-
Christophe Geuzaine authored
-
- May 18, 2002
-
-
Christophe Geuzaine authored
-
Christophe Geuzaine authored
-
- Jan 08, 2001
-
-
Christophe Geuzaine authored
-