- 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
-
- Feb 10, 2010
-
-
Christophe Geuzaine authored
-
- Jun 27, 2009
-
-
Christophe Geuzaine authored
-
- Jan 08, 2009
-
-
Christophe Geuzaine authored
HAVE_XXX defines. This fixes three longstanding problems: - the API was hard to use because some headers had HAVE_XXX ifdefs, so that cient codes had to know how the lib was compiled to compile themselves - we had to do make clean after each ./configure, which erased too much (e.g. most of contrib) - make depend could include unwanted stuff since it redefined FLAGS
-
- 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
-
- Jul 11, 2008
-
-
Christophe Geuzaine authored
-
- May 14, 2008
-
-
Akash Anand 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(); }
-
- Jan 21, 2008
-
-
Christophe Geuzaine authored
API cleanup: FVertex, FEdge, etc. -> fourierVertex, fourierEdge, etc.
-
- Aug 07, 2007
-
-
Akash Anand authored
Updating Gmsh to use new, "external" version of FourierModel.
-
Akash Anand authored
-
Christophe Geuzaine authored
more FM IO
-
- May 24, 2007
-
-
Christophe Geuzaine authored
-
- May 10, 2007
-
-
Akash Anand authored
-