mirror of
https://github.com/NGSolve/netgen.git
synced 2025-01-12 22:20:35 +05:00
disable check overlap for occ meshsurface
This commit is contained in:
parent
359b8125ea
commit
ee7360ad19
@ -796,7 +796,6 @@ namespace netgen
|
||||
// Philippose - 15/01/2009
|
||||
double maxh = geom.face_maxh[k-1];
|
||||
//double maxh = mparam.maxh;
|
||||
// mparam.checkoverlap = 0;
|
||||
// int noldpoints = mesh->GetNP();
|
||||
int noldsurfel = mesh.GetNSE();
|
||||
|
||||
@ -809,9 +808,13 @@ namespace netgen
|
||||
|
||||
MESHING2_RESULT res;
|
||||
|
||||
// TODO: check overlap not correctly working here
|
||||
MeshingParameters mparam_without_overlap = mparam;
|
||||
mparam_without_overlap.checkoverlap = false;
|
||||
|
||||
try {
|
||||
static Timer t("GenerateMesh"); RegionTimer reg(t);
|
||||
res = meshing.GenerateMesh (mesh, mparam, maxh, k);
|
||||
res = meshing.GenerateMesh (mesh, mparam_without_overlap, maxh, k);
|
||||
}
|
||||
|
||||
catch (SingularMatrixException)
|
||||
|
Loading…
Reference in New Issue
Block a user