mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-11-11 16:19:17 +05:00
0022879: [CEA 1426] TestMeasureOperations fails
This commit is contained in:
parent
8f97ff0556
commit
3ddada8e52
@ -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"
|
||||||
|
@ -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,9 +60,10 @@ def TestMeasureOperations (geompy, math):
|
|||||||
|
|
||||||
####### Detect Fast intersection #######
|
####### Detect Fast intersection #######
|
||||||
|
|
||||||
cylinder = geompy.MakeCylinderRH(100, 300)
|
if salome_version.getXVersion() > "0x70501":
|
||||||
if geompy.FastIntersect(box, cylinder) == False:
|
cylinder = geompy.MakeCylinderRH(100, 300)
|
||||||
raise RuntimeError, "Existing intersection is not detected"
|
if geompy.FastIntersect(box, cylinder)[0] == False:
|
||||||
|
raise RuntimeError, "Existing intersection is not detected"
|
||||||
|
|
||||||
####### WhatIs #######
|
####### WhatIs #######
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user