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"
# 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)
####### 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 #######