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

*** empty log message ***

parent 50640c36
No related branches found
No related tags found
No related merge requests found
// $Id: Geo.cpp,v 1.92 2007-08-27 19:52:07 geuzaine Exp $ // $Id: Geo.cpp,v 1.93 2007-08-29 14:18:25 geuzaine Exp $
// //
// Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle // Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle
// //
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
#include "Geo.h" #include "Geo.h"
#include "GModel.h" #include "GModel.h"
#include "GeoInterpolation.h" #include "GeoInterpolation.h"
#include "Parser.h"
#include "Context.h" #include "Context.h"
extern Mesh *THEM; extern Mesh *THEM;
...@@ -55,6 +56,9 @@ void Mesh::free_all() ...@@ -55,6 +56,9 @@ void Mesh::free_all()
Tree_Action(SurfaceLoops, Free_SurfaceLoop); Tree_Delete(SurfaceLoops); Tree_Action(SurfaceLoops, Free_SurfaceLoop); Tree_Delete(SurfaceLoops);
Tree_Action(Volumes, Free_Volume); Tree_Delete(Volumes); Tree_Action(Volumes, Free_Volume); Tree_Delete(Volumes);
List_Action(PhysicalGroups, Free_PhysicalGroup); List_Delete(PhysicalGroups); List_Action(PhysicalGroups, Free_PhysicalGroup); List_Delete(PhysicalGroups);
// don't delete the symbols: for now we assume that symbols live
// forever
// InitSymbols();
} }
// Comparison routines // Comparison routines
......
// $Id: gmshEdge.cpp,v 1.36 2007-08-29 07:57:39 geuzaine Exp $ // $Id: gmshEdge.cpp,v 1.37 2007-08-29 14:18:25 geuzaine Exp $
// //
// Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle // Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle
// //
...@@ -227,7 +227,7 @@ SPoint2 gmshEdge::reparamOnFace(GFace *face, double epar,int dir) const ...@@ -227,7 +227,7 @@ SPoint2 gmshEdge::reparamOnFace(GFace *face, double epar,int dir) const
} }
if(s->Typ == MSH_SURF_REGL){ if(s->Typ == MSH_SURF_REGL){
Curve *C[4]; // BUG !!!!!!!!!!!!!!!!!!!!! Curve *C[4];
for(int i = 0; i < 4; i++) for(int i = 0; i < 4; i++)
List_Read(s->Generatrices, i, &C[i]); List_Read(s->Generatrices, i, &C[i]);
......
// $Id: PViewOptions.cpp,v 1.11 2007-08-28 23:12:49 geuzaine Exp $ // $Id: PViewOptions.cpp,v 1.12 2007-08-29 14:18:25 geuzaine Exp $
// //
// Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle // Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle
// //
...@@ -57,7 +57,7 @@ PViewOptions::PViewOptions() ...@@ -57,7 +57,7 @@ PViewOptions::PViewOptions()
Visible = 1; Visible = 1;
IntervalsType = Continuous; IntervalsType = Continuous;
//IntervalsType = Discrete; //IntervalsType = Discrete;
IntervalsType = Iso; //IntervalsType = Iso;
//IntervalsType = Numeric; //IntervalsType = Numeric;
NbIso = 15; NbIso = 15;
ArrowSizeProportional = 1; ArrowSizeProportional = 1;
...@@ -79,7 +79,7 @@ PViewOptions::PViewOptions() ...@@ -79,7 +79,7 @@ PViewOptions::PViewOptions()
DrawStrings = DrawPoints = DrawLines = DrawTriangles = DrawQuadrangles = DrawStrings = DrawPoints = DrawLines = DrawTriangles = DrawQuadrangles =
DrawTetrahedra = DrawHexahedra = DrawPrisms = DrawPyramids = DrawTetrahedra = DrawHexahedra = DrawPrisms = DrawPyramids =
DrawScalars = DrawVectors = DrawTensors = 1; DrawScalars = DrawVectors = DrawTensors = 1;
Boundary = 2; Boundary = 0;
PointType = LineType = 0; PointType = LineType = 0;
PointSize = 6; PointSize = 6;
LineWidth = 2; LineWidth = 2;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment