0022879: [CEA 1426] TestMeasureOperations fails

This commit is contained in:
vsr 2015-02-20 17:41:54 +03:00
parent 8f97ff0556
commit 3ddada8e52
2 changed files with 8 additions and 5 deletions

View File

@ -75,10 +75,10 @@ Fillet_1 = geompy.MakeFillet(Common_1, 10, geompy.ShapeType["EDGE"], [5])
geompy.addToStudy(Fillet_1, "Fillet_1") geompy.addToStudy(Fillet_1, "Fillet_1")
#Chamfer applying #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") 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") geompy.addToStudy(Chamfer_2, "Chamfer_2")
#Import of the shape from "slots.brep" #Import of the shape from "slots.brep"

View File

@ -21,6 +21,8 @@
# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
# #
import salome_version
def TestMeasureOperations (geompy, math): def TestMeasureOperations (geompy, math):
p0 = geompy.MakeVertex(0 , 0, 0) p0 = geompy.MakeVertex(0 , 0, 0)
@ -58,8 +60,9 @@ def TestMeasureOperations (geompy, math):
####### Detect Fast intersection ####### ####### Detect Fast intersection #######
if salome_version.getXVersion() > "0x70501":
cylinder = geompy.MakeCylinderRH(100, 300) cylinder = geompy.MakeCylinderRH(100, 300)
if geompy.FastIntersect(box, cylinder) == False: if geompy.FastIntersect(box, cylinder)[0] == False:
raise RuntimeError, "Existing intersection is not detected" raise RuntimeError, "Existing intersection is not detected"
####### WhatIs ####### ####### WhatIs #######