Skip to content
Snippets Groups Projects
Commit 0b598844 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

- (c) update

- fix bb computation to avoid model jumping around when adding points in z=0 plane
- pass interpol matrices as ref
parent c18499fe
No related branches found
No related tags found
No related merge requests found
// Gmsh - Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle
// Gmsh - Copyright (C) 1997-2009 C. Geuzaine, J.-F. Remacle
//
// See the LICENSE.txt file for license information. Please report all
// bugs and problems to <gmsh@geuz.org>.
......
// Gmsh - Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle
// Gmsh - Copyright (C) 1997-2009 C. Geuzaine, J.-F. Remacle
//
// See the LICENSE.txt file for license information. Please report all
// bugs and problems to <gmsh@geuz.org>.
......@@ -564,7 +564,7 @@ void Get_Options(int argc, char *argv[])
}
else if(!strcmp(argv[i] + 1, "help") || !strcmp(argv[i] + 1, "-help")) {
fprintf(stderr, "Gmsh, a 3D mesh generator with pre- and post-processing facilities\n");
fprintf(stderr, "Copyright (C) 1997-2008 Christophe Geuzaine and Jean-Francois Remacle\n");
fprintf(stderr, "Copyright (C) 1997-2009 Christophe Geuzaine and Jean-Francois Remacle\n");
Print_Usage(argv[0]);
Msg::Exit(0);
}
......
// Gmsh - Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle
// Gmsh - Copyright (C) 1997-2009 C. Geuzaine, J.-F. Remacle
//
// See the LICENSE.txt file for license information. Please report all
// bugs and problems to <gmsh@geuz.org>.
......
// Gmsh - Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle
// Gmsh - Copyright (C) 1997-2009 C. Geuzaine, J.-F. Remacle
//
// See the LICENSE.txt file for license information. Please report all
// bugs and problems to <gmsh@geuz.org>.
......@@ -75,9 +75,8 @@ class Context_T {
int useTrackball; // do or do not use the trackball for rotations
double rotation_center[3]; // point around which to rotate the scene
int rotation_center_cg; // rotate around the center of mass instead of rotation_center[]
double min[3]; // x, y and z min for the current geometry
double max[3]; // x, y and z max for the current geometry
double cg[3]; // "center of mass" of the current geometry
double min[3], max[3]; // "overall" x, y and z min used for drawing and lc computation
double cg[3]; // "center of mass" of the current geometry, used for graphics only
double lc; // characteristic length for the whole problem (never
// used in mesh generation ->only for geo/post)
int db, antialiasing; // double buffer? antialiasing?
......
// Gmsh - Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle
// Gmsh - Copyright (C) 1997-2009 C. Geuzaine, J.-F. Remacle
//
// See the LICENSE.txt file for license information. Please report all
// bugs and problems to <gmsh@geuz.org>.
......
// Gmsh - Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle
// Gmsh - Copyright (C) 1997-2009 C. Geuzaine, J.-F. Remacle
//
// See the LICENSE.txt file for license information. Please report all
// bugs and problems to <gmsh@geuz.org>.
......
// Gmsh - Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle
// Gmsh - Copyright (C) 1997-2009 C. Geuzaine, J.-F. Remacle
//
// See the LICENSE.txt file for license information. Please report all
// bugs and problems to <gmsh@geuz.org>.
......@@ -105,7 +105,7 @@ StringXString SolverOptions_String[] = {
"Name of solver 0" },
{ F|O, "Help0" , opt_solver_help0 ,
"A General environment for the treatment of\nDiscrete Problems\n\n"
"Copyright (C) 1997-2008\nPatrick Dular and Christophe Geuzaine\n\n"
"Copyright (C) 1997-2009\nPatrick Dular and Christophe Geuzaine\n\n"
"Visit http://www.geuz.org/getdp/ for more info",
"Help string for solver 0" },
{ F|O, "Executable0" , opt_solver_executable0 ,
......
// Gmsh - Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle
// Gmsh - Copyright (C) 1997-2009 C. Geuzaine, J.-F. Remacle
//
// See the LICENSE.txt file for license information. Please report all
// bugs and problems to <gmsh@geuz.org>.
......
// Gmsh - Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle
// Gmsh - Copyright (C) 1997-2009 C. Geuzaine, J.-F. Remacle
//
// See the LICENSE.txt file for license information. Please report all
// bugs and problems to <gmsh@geuz.org>.
......
// Gmsh - Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle
// Gmsh - Copyright (C) 1997-2009 C. Geuzaine, J.-F. Remacle
//
// See the LICENSE.txt file for license information. Please report all
// bugs and problems to <gmsh@geuz.org>.
......
// Gmsh - Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle
// Gmsh - Copyright (C) 1997-2009 C. Geuzaine, J.-F. Remacle
//
// See the LICENSE.txt file for license information. Please report all
// bugs and problems to <gmsh@geuz.org>.
......
// Gmsh - Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle
// Gmsh - Copyright (C) 1997-2009 C. Geuzaine, J.-F. Remacle
//
// See the LICENSE.txt file for license information. Please report all
// bugs and problems to <gmsh@geuz.org>.
......
// Gmsh - Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle
// Gmsh - Copyright (C) 1997-2009 C. Geuzaine, J.-F. Remacle
//
// See the LICENSE.txt file for license information. Please report all
// bugs and problems to <gmsh@geuz.org>.
......
// Gmsh - Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle
// Gmsh - Copyright (C) 1997-2009 C. Geuzaine, J.-F. Remacle
//
// See the LICENSE.txt file for license information. Please report all
// bugs and problems to <gmsh@geuz.org>.
......
// Gmsh - Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle
// Gmsh - Copyright (C) 1997-2009 C. Geuzaine, J.-F. Remacle
//
// See the LICENSE.txt file for license information. Please report all
// bugs and problems to <gmsh@geuz.org>.
......
// Gmsh - Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle
// Gmsh - Copyright (C) 1997-2009 C. Geuzaine, J.-F. Remacle
//
// See the LICENSE.txt file for license information. Please report all
// bugs and problems to <gmsh@geuz.org>.
......
// Gmsh - Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle
// Gmsh - Copyright (C) 1997-2009 C. Geuzaine, J.-F. Remacle
//
// See the LICENSE.txt file for license information. Please report all
// bugs and problems to <gmsh@geuz.org>.
......
// Gmsh - Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle
// Gmsh - Copyright (C) 1997-2009 C. Geuzaine, J.-F. Remacle
//
// See the LICENSE.txt file for license information. Please report all
// bugs and problems to <gmsh@geuz.org>.
......
// Gmsh - Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle
// Gmsh - Copyright (C) 1997-2009 C. Geuzaine, J.-F. Remacle
//
// See the LICENSE.txt file for license information. Please report all
// bugs and problems to <gmsh@geuz.org>.
......
// Gmsh - Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle
// Gmsh - Copyright (C) 1997-2009 C. Geuzaine, J.-F. Remacle
//
// See the LICENSE.txt file for license information. Please report all
// bugs and problems to <gmsh@geuz.org>.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment