remove debug

This commit is contained in:
Joachim Schoeberl 2011-10-12 19:51:42 +00:00
parent 1e9656e25e
commit 4d3352c426
2 changed files with 0 additions and 15 deletions

View File

@ -193,14 +193,6 @@ namespace netgen
pplane(0) = p1p * ex;
pplane(1) = p1p * ey;
zone = 0;
*testout << "Plane::toplane" << endl;
*testout << "ex = " << ex << endl;
*testout << "ey = " << ey << endl;
*testout << "p1 = " << p1 << endl;
*testout << "h = " << h << endl;
*testout << "p3d = " << p3d << endl;
*testout << "pplane = " << pplane << endl;
}
void Plane :: FromPlane (const Point<2> & pplane, Point<3> & p3d, double h) const

View File

@ -88,13 +88,6 @@ void Surface :: DefineTangentialPlane (const Point<3> & ap1,
ex -= (ex * ez) * ez;
ex.Normalize();
ey = Cross (ez, ex);
*testout << "surface, deftangentialplane" << endl;
*testout << "p1 = " << p1 << endl;
*testout << "p2 = " << p2 << endl;
*testout << "ez = " << ez << endl;
*testout << "ex = " << ex << endl;
*testout << "ey = " << ey << endl;
}
void Surface :: ToPlane (const Point<3> & p3d, Point<2> & pplane,