Salome HOME
0022879: [CEA 1426] TestMeasureOperations fails
authorvsr <vsr@opencascade.com>
Fri, 20 Feb 2015 14:41:54 +0000 (17:41 +0300)
committervsr <vsr@opencascade.com>
Fri, 20 Feb 2015 14:41:54 +0000 (17:41 +0300)
src/GEOM_SWIG/GEOM_Nut.py
src/GEOM_SWIG/GEOM_TestMeasures.py

index 2f425a420c8c21d6fb9a835782ace0d45f47be7a..219c3bfc0176671212ee325b3d595d806cf74840 100755 (executable)
@@ -75,10 +75,10 @@ Fillet_1 = geompy.MakeFillet(Common_1, 10, geompy.ShapeType["EDGE"], [5])
 geompy.addToStudy(Fillet_1, "Fillet_1")
 
 #Chamfer applying
-Chamfer_1 = geompy.MakeChamferEdge(Fillet_1, 10, 10, 16, 50 )
+Chamfer_1 = geompy.MakeChamferEdge(Fillet_1, 10, 10, 15, 49 )
 geompy.addToStudy(Chamfer_1, "Chamfer_1")
 
-Chamfer_2 = geompy.MakeChamferEdge(Chamfer_1, 10, 10, 21, 31 )
+Chamfer_2 = geompy.MakeChamferEdge(Chamfer_1, 10, 10, 20, 30 )
 geompy.addToStudy(Chamfer_2, "Chamfer_2")
 
 #Import of the shape from "slots.brep"
index 6384a2853089349b75a45f8720610aebc23f1a07..87c9a0d1104fb2cbf075fcd59fb165d609a04597 100644 (file)
@@ -21,6 +21,8 @@
 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 #
 
+import salome_version
+
 def TestMeasureOperations (geompy, math):
 
   p0   = geompy.MakeVertex(0 ,  0,  0)
@@ -58,9 +60,10 @@ def TestMeasureOperations (geompy, math):
 
   ####### Detect Fast intersection #######
 
-  cylinder = geompy.MakeCylinderRH(100, 300)
-  if geompy.FastIntersect(box, cylinder) == False:
-    raise RuntimeError, "Existing intersection is not detected"
+  if salome_version.getXVersion() > "0x70501":
+    cylinder = geompy.MakeCylinderRH(100, 300)
+    if geompy.FastIntersect(box, cylinder)[0] == False:
+      raise RuntimeError, "Existing intersection is not detected"
 
   ####### WhatIs #######