]> SALOME platform Git repositories - modules/med.git/commitdiff
Salome HOME
remove debug vtu files. agy/DebugIntersect2DMeshWith1DLine
authorAnthony Geay <anthony.geay@edf.fr>
Mon, 5 Jan 2015 16:37:49 +0000 (17:37 +0100)
committerAnthony Geay <anthony.geay@edf.fr>
Mon, 5 Jan 2015 16:37:49 +0000 (17:37 +0100)
src/MEDCoupling_Swig/MEDCouplingBasicsTest.py

index c1ca797dd577f0c6ff9cf9a5214124658b676dcb..5b99aaebee6238b1cd871aa920d31ef318e56877 100644 (file)
@@ -16069,8 +16069,6 @@ class MEDCouplingBasicsTest(unittest.TestCase):
         m_line = MEDCouplingUMesh("seg", 1)  
         m_line.setCoords(DataArrayDouble(coords2, len(coords2)/2, 2))
         m_line.setConnectivity(DataArrayInt(connec2), DataArrayInt(cI2))
-        tmp_m=m.deepCpy() ; tmp_m.tessellate2D(0.1) ; tmp_m.writeVTK("m2D.vtu")
-        tmp_line=m_line.deepCpy() ; tmp_line.tessellate2DCurve(0.1) ; tmp_line.writeVTK("m1D.vtu")
         a, b, c, d = MEDCouplingUMesh.Intersect2DMeshWith1DLine(m, m_line, eps)
         self.assertTrue(a.getCoords().getHiddenCppPointer()==b.getCoords().getHiddenCppPointer())
         self.assertTrue(a.getCoords()[:m.getNumberOfNodes()].isEqual(m.getCoords(),1e-12))