mirror of
https://github.com/NGSolve/netgen.git
synced 2025-04-05 11:28:27 +05:00
reset surface element linked list when deleting surface elements
This commit is contained in:
parent
a48aee5bdd
commit
49378768b4
@ -137,6 +137,16 @@ namespace netgen
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void Mesh :: ClearSurfaceElements()
|
||||||
|
{
|
||||||
|
surfelements.SetSize(0);
|
||||||
|
for (int i = 0; i < facedecoding.Size(); i++)
|
||||||
|
facedecoding[i].firstelement = -1;
|
||||||
|
|
||||||
|
timestamp = NextTimeStamp();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
PointIndex Mesh :: AddPoint (const Point3d & p, int layer)
|
PointIndex Mesh :: AddPoint (const Point3d & p, int layer)
|
||||||
{
|
{
|
||||||
|
@ -191,11 +191,7 @@ public:
|
|||||||
void DeleteMesh();
|
void DeleteMesh();
|
||||||
|
|
||||||
///
|
///
|
||||||
void ClearSurfaceElements()
|
void ClearSurfaceElements();
|
||||||
{
|
|
||||||
surfelements.SetSize(0);
|
|
||||||
timestamp = NextTimeStamp();
|
|
||||||
}
|
|
||||||
|
|
||||||
///
|
///
|
||||||
void ClearVolumeElements()
|
void ClearVolumeElements()
|
||||||
|
@ -136,8 +136,6 @@ namespace netgen
|
|||||||
|
|
||||||
glPolygonMode (GL_FRONT_AND_BACK, GL_FILL);
|
glPolygonMode (GL_FRONT_AND_BACK, GL_FILL);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// glPolygonOffset (1,10);
|
// glPolygonOffset (1,10);
|
||||||
glPolygonOffset (2,2);
|
glPolygonOffset (2,2);
|
||||||
glEnable (GL_POLYGON_OFFSET_FILL);
|
glEnable (GL_POLYGON_OFFSET_FILL);
|
||||||
@ -210,9 +208,6 @@ namespace netgen
|
|||||||
glDisable (GL_LINE_SMOOTH);
|
glDisable (GL_LINE_SMOOTH);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if (vispar.drawoutline)
|
if (vispar.drawoutline)
|
||||||
{
|
{
|
||||||
glPolygonOffset (1, 1);
|
glPolygonOffset (1, 1);
|
||||||
@ -897,8 +892,6 @@ namespace netgen
|
|||||||
static int timer = NgProfiler::CreateTimer ("Mesh::BuildFilledList");
|
static int timer = NgProfiler::CreateTimer ("Mesh::BuildFilledList");
|
||||||
NgProfiler::RegionTimer reg (timer);
|
NgProfiler::RegionTimer reg (timer);
|
||||||
|
|
||||||
// cout << "buildilled" << endl;
|
|
||||||
|
|
||||||
#ifdef PARALLELGL
|
#ifdef PARALLELGL
|
||||||
cout << "buildfillelist, id = " << id << ", nse = " << mesh -> GetNSE() << endl;
|
cout << "buildfillelist, id = " << id << ", nse = " << mesh -> GetNSE() << endl;
|
||||||
|
|
||||||
@ -1010,7 +1003,6 @@ namespace netgen
|
|||||||
const FaceDescriptor & fd = mesh->GetFaceDescriptor(faceindex);
|
const FaceDescriptor & fd = mesh->GetFaceDescriptor(faceindex);
|
||||||
mesh->GetSurfaceElementsOfFace (faceindex, seia);
|
mesh->GetSurfaceElementsOfFace (faceindex, seia);
|
||||||
|
|
||||||
|
|
||||||
// Philippose - 06/07/2009
|
// Philippose - 06/07/2009
|
||||||
// Modified the colour system to integrate the face colours into
|
// Modified the colour system to integrate the face colours into
|
||||||
// the mesh data structure, rather than limit it to the OCC geometry
|
// the mesh data structure, rather than limit it to the OCC geometry
|
||||||
@ -1392,7 +1384,6 @@ namespace netgen
|
|||||||
linetimestamp = NextTimeStamp();
|
linetimestamp = NextTimeStamp();
|
||||||
|
|
||||||
#ifdef STLGEOM
|
#ifdef STLGEOM
|
||||||
xxx
|
|
||||||
STLGeometry * stlgeometry = dynamic_cast<STLGeometry*> (ng_geometry);
|
STLGeometry * stlgeometry = dynamic_cast<STLGeometry*> (ng_geometry);
|
||||||
bool checkvicinity = (stlgeometry != NULL) && stldoctor.showvicinity;
|
bool checkvicinity = (stlgeometry != NULL) && stldoctor.showvicinity;
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user