mirror of
https://github.com/NGSolve/netgen.git
synced 2025-01-26 04:40:34 +05:00
* Reformatted source code for readability
This commit is contained in:
parent
f4d4084b1d
commit
3e457df12d
@ -498,7 +498,7 @@ namespace netgen
|
|||||||
|
|
||||||
|
|
||||||
outfile << "\n" << "\n";
|
outfile << "\n" << "\n";
|
||||||
// outfile << " surf1 surf2 p1 p2" << "\n";
|
// outfile << " surf1 surf2 p1 p2" << "\n";
|
||||||
outfile << "# surfid 0 p1 p2 trignum1 trignum2 domin/surfnr1 domout/surfnr2 ednr1 dist1 ednr2 dist2 \n";
|
outfile << "# surfid 0 p1 p2 trignum1 trignum2 domin/surfnr1 domout/surfnr2 ednr1 dist1 ednr2 dist2 \n";
|
||||||
outfile << "edgesegmentsgi2" << "\n";
|
outfile << "edgesegmentsgi2" << "\n";
|
||||||
outfile << GetNSeg() << "\n";
|
outfile << GetNSeg() << "\n";
|
||||||
@ -5122,81 +5122,81 @@ namespace netgen
|
|||||||
return cnt;
|
return cnt;
|
||||||
}
|
}
|
||||||
|
|
||||||
// #ifdef NONE
|
// #ifdef NONE
|
||||||
// void Mesh :: AddIdentification (int pi1, int pi2, int identnr)
|
// void Mesh :: AddIdentification (int pi1, int pi2, int identnr)
|
||||||
// {
|
// {
|
||||||
// INDEX_2 pair(pi1, pi2);
|
// INDEX_2 pair(pi1, pi2);
|
||||||
// // pair.Sort();
|
// // pair.Sort();
|
||||||
// identifiedpoints->Set (pair, identnr);
|
// identifiedpoints->Set (pair, identnr);
|
||||||
// if (identnr > maxidentnr)
|
// if (identnr > maxidentnr)
|
||||||
// maxidentnr = identnr;
|
// maxidentnr = identnr;
|
||||||
// timestamp = NextTimeStamp();
|
// timestamp = NextTimeStamp();
|
||||||
// }
|
// }
|
||||||
|
|
||||||
// int Mesh :: GetIdentification (int pi1, int pi2) const
|
// int Mesh :: GetIdentification (int pi1, int pi2) const
|
||||||
// {
|
// {
|
||||||
// INDEX_2 pair(pi1, pi2);
|
// INDEX_2 pair(pi1, pi2);
|
||||||
// if (identifiedpoints->Used (pair))
|
// if (identifiedpoints->Used (pair))
|
||||||
// return identifiedpoints->Get(pair);
|
// return identifiedpoints->Get(pair);
|
||||||
// else
|
// else
|
||||||
// return 0;
|
// return 0;
|
||||||
// }
|
// }
|
||||||
|
|
||||||
// int Mesh :: GetIdentificationSym (int pi1, int pi2) const
|
// int Mesh :: GetIdentificationSym (int pi1, int pi2) const
|
||||||
// {
|
// {
|
||||||
// INDEX_2 pair(pi1, pi2);
|
// INDEX_2 pair(pi1, pi2);
|
||||||
// if (identifiedpoints->Used (pair))
|
// if (identifiedpoints->Used (pair))
|
||||||
// return identifiedpoints->Get(pair);
|
// return identifiedpoints->Get(pair);
|
||||||
|
|
||||||
// pair = INDEX_2 (pi2, pi1);
|
// pair = INDEX_2 (pi2, pi1);
|
||||||
// if (identifiedpoints->Used (pair))
|
// if (identifiedpoints->Used (pair))
|
||||||
// return identifiedpoints->Get(pair);
|
// return identifiedpoints->Get(pair);
|
||||||
|
|
||||||
// return 0;
|
// return 0;
|
||||||
// }
|
// }
|
||||||
|
|
||||||
|
|
||||||
// void Mesh :: GetIdentificationMap (int identnr, Array<int> & identmap) const
|
// void Mesh :: GetIdentificationMap (int identnr, Array<int> & identmap) const
|
||||||
// {
|
// {
|
||||||
// int i, j;
|
// int i, j;
|
||||||
|
|
||||||
// identmap.SetSize (GetNP());
|
// identmap.SetSize (GetNP());
|
||||||
// for (i = 1; i <= identmap.Size(); i++)
|
// for (i = 1; i <= identmap.Size(); i++)
|
||||||
// identmap.Elem(i) = 0;
|
// identmap.Elem(i) = 0;
|
||||||
|
|
||||||
// for (i = 1; i <= identifiedpoints->GetNBags(); i++)
|
// for (i = 1; i <= identifiedpoints->GetNBags(); i++)
|
||||||
// for (j = 1; j <= identifiedpoints->GetBagSize(i); j++)
|
// for (j = 1; j <= identifiedpoints->GetBagSize(i); j++)
|
||||||
// {
|
// {
|
||||||
// INDEX_2 i2;
|
// INDEX_2 i2;
|
||||||
// int nr;
|
// int nr;
|
||||||
// identifiedpoints->GetData (i, j, i2, nr);
|
// identifiedpoints->GetData (i, j, i2, nr);
|
||||||
|
|
||||||
// if (nr == identnr)
|
// if (nr == identnr)
|
||||||
// {
|
// {
|
||||||
// identmap.Elem(i2.I1()) = i2.I2();
|
// identmap.Elem(i2.I1()) = i2.I2();
|
||||||
// }
|
// }
|
||||||
// }
|
// }
|
||||||
// }
|
// }
|
||||||
|
|
||||||
|
|
||||||
// void Mesh :: GetIdentificationPairs (int identnr, Array<INDEX_2> & identpairs) const
|
// void Mesh :: GetIdentificationPairs (int identnr, Array<INDEX_2> & identpairs) const
|
||||||
// {
|
// {
|
||||||
// int i, j;
|
// int i, j;
|
||||||
|
|
||||||
// identpairs.SetSize(0);
|
// identpairs.SetSize(0);
|
||||||
|
|
||||||
// for (i = 1; i <= identifiedpoints->GetNBags(); i++)
|
// for (i = 1; i <= identifiedpoints->GetNBags(); i++)
|
||||||
// for (j = 1; j <= identifiedpoints->GetBagSize(i); j++)
|
// for (j = 1; j <= identifiedpoints->GetBagSize(i); j++)
|
||||||
// {
|
// {
|
||||||
// INDEX_2 i2;
|
// INDEX_2 i2;
|
||||||
// int nr;
|
// int nr;
|
||||||
// identifiedpoints->GetData (i, j, i2, nr);
|
// identifiedpoints->GetData (i, j, i2, nr);
|
||||||
|
|
||||||
// if (identnr == 0 || nr == identnr)
|
// if (identnr == 0 || nr == identnr)
|
||||||
// identpairs.Append (i2);
|
// identpairs.Append (i2);
|
||||||
// }
|
// }
|
||||||
// }
|
// }
|
||||||
// #endif
|
// #endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user