- Dec 19, 2006
-
-
Christophe Geuzaine authored
fix err msg
-
- Dec 18, 2006
-
-
Christophe Geuzaine authored
Added basic support for physicals in all mesh formats that ignored physicals before (stl, vrml, mesh, bdf, pos). This way we can use the physical mechanism to only save parts of the mesh (like we do it now for msh and unv files). Next step will be to add an option to only mesh the physicals (and their dependencies). This is very useful for large models and/or for debugging.
-
- Nov 27, 2006
-
-
Christophe Geuzaine authored
-
- Nov 21, 2006
-
-
Stefen Guzik authored
support for CGNS IO
-
- Oct 10, 2006
-
-
Christophe Geuzaine authored
new GModel::writeGEO (only implemented for gmshModel for now; goal is to be able to implement this for other derived model types (like OCC) later, too)
-
- Sep 03, 2006
-
-
Christophe Geuzaine authored
- finished Nastran BDF implementation (read+write in all BDF formats: free field, small field & long field) - improved UNV and Medit import - added detection of bad vertex indices in all import routines - fixed bug in 2nd order quad constructor
-
- Sep 02, 2006
-
-
Christophe Geuzaine authored
- changed UNV output to match MSH output w.r.t. physical groups - new UNV file reader
-
- Aug 31, 2006
-
-
Christophe Geuzaine authored
Added support (both read and write) for the Nastran Bulk Data File format (BDF). This might need some adjustments depending on what the actual spec is: I just reverse engineered some BDF files I found on the web :-)
-
Christophe Geuzaine authored
refer to .mesh as MEDIT format, not INRIA format
-
- Aug 23, 2006
-
-
Christophe Geuzaine authored
simplify TeX printing
-
- Aug 19, 2006
-
-
Christophe Geuzaine authored
Implemented new binary MSH file format (both read and write). A 250Mb mesh file (6 million tetrahedra) is now read or written to disk in less than 10 seconds (on my powerbook's slow hard drive).
-
Christophe Geuzaine authored
added binary stl export
-
- Aug 12, 2006
-
-
Christophe Geuzaine authored
-
- Aug 10, 2006
-
-
Christophe Geuzaine authored
-
Christophe Geuzaine authored
-
- Aug 07, 2006
-
-
Christophe Geuzaine authored
-
Christophe Geuzaine authored
-
Christophe Geuzaine authored
-
Christophe Geuzaine authored
-
- Aug 06, 2006
-
-
Christophe Geuzaine authored
-
- Aug 05, 2006
-
-
Christophe Geuzaine authored
-
- Aug 04, 2006
-
-
Christophe Geuzaine authored
-
- Jul 24, 2006
-
-
Christophe Geuzaine authored
- SVG export - more work on new geo database
-
- Jul 14, 2006
-
-
Christophe Geuzaine authored
-
- Jul 12, 2006
-
-
Christophe Geuzaine authored
-
- Jun 08, 2006
-
-
Christophe Geuzaine authored
typo
-
- May 17, 2006
-
-
Christophe Geuzaine authored
-
Christophe Geuzaine authored
-
Christophe Geuzaine authored
merging offscreen rendering from branch
-
- 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
-
- Dec 22, 2005
-
-
Christophe Geuzaine authored
Removed all compile-time depdencies on byte ordering (big- or little- endianness). Replaced them with run-time conversions where necessary (only for packing/unpacking of colors into unsigned ints). Performance hit should be negligeable, but this will allow to compile Universal Binaries on Mac in a single step (instead of having to compile the PPC/big-endian and the i386/little-endian separately, which wouls be a royal pain in the butt).
-
- Dec 16, 2005
-
-
Christophe Geuzaine authored
-
Christophe Geuzaine authored
avoid repeated error msgs
-
Christophe Geuzaine authored
print option dialogs now also show up when saving files "by extension"
-
Christophe Geuzaine authored
cleanup+add comments so that students can understand what's going on with the projection stuff. (still need to cleanup the zooming in handle() to use gluUnproject() instead of the ad-hock stuff that only works for an orthographic proj)
-
Christophe Geuzaine authored
little hack to draw a gradient in the background. Nice for flashy presentations ;-)
-
- Jun 08, 2005
-
-
Christophe Geuzaine authored
replaced ExportLCField with ExportMeshStatistics (lc + gamma, eta, rho + elem num)
-
- Mar 09, 2005
-
-
Christophe Geuzaine authored
removed all unnecessary glPushMatrix/glPopMatrix calls
-
- Feb 28, 2005
-
-
Christophe Geuzaine authored
Merged patch from Matt Gundry <mjgundry@faa-engineers.com> to support the structured Plot3d mesh format.
-
- Jan 08, 2005
-
-
Christophe Geuzaine authored
- removed all the crappy STL code and rewrote it using JF's POLY_rep class - generalized POLY_rep so that we can use the polygonal discretization as a surface mesh, and mesh in 3D afterwards. I.e., we can now take an input triangulation (a single surface in STL format, multiple surfaces in STL format, one or more surfaces defined using the new "Discrete Surface" commands), and generate a 3D mesh that uses it. We could in theory even mix triangulated and "normal" surfaces in the same geometry, but nothing is done at the moment to ensure that the mesh at the interfaces would match (if it does, it actually works very nicely) - new STL mesh output format to export a surface mesh as a STL file - added an option to the GEO output routine to save the surface mesh as discrete surfaces associated with the geometrical surfaces - added STL and Text output formats for post-processing views (the text output allows for example to exploit plugin-generated data in gnuplot) - generalized Plugin(Evaluate): * can loop automatically over all the timestep and/or components * can do operations using data from an external view - if the 2 views are based on the same grid, the plugin does the evaluation very efficiently - if the 2 views are based on differenet grids, the plugin automatically interpolates the external view data onto the grid of the current view - added new Rand() function in MathEval - default colormap is now # 2 (the Matlab "Jet" colormap)
-