BugID: IPAL11946, increased a radius of cylinder where the edges are searched in operation GetShapesOnCylinder

This commit is contained in:
srn 2006-03-27 10:58:19 +00:00
parent fef01ebcd4
commit ab29eea80f

View File

@ -426,7 +426,7 @@ def TestOtherOperations (geompy, math):
# GetShapesOnCylinderIDs # GetShapesOnCylinderIDs
edges_in_cyl_ids = geompy.GetShapesOnCylinderIDs(blocksComp, geompy.ShapeType["EDGE"], edges_in_cyl_ids = geompy.GetShapesOnCylinderIDs(blocksComp, geompy.ShapeType["EDGE"],
vy, 55, geompy.GEOM.ST_IN) vy, 80, geompy.GEOM.ST_IN)
edges_in = geompy.CreateGroup(blocksComp, geompy.ShapeType["EDGE"]) edges_in = geompy.CreateGroup(blocksComp, geompy.ShapeType["EDGE"])
geompy.UnionIDs(edges_in, edges_in_cyl_ids) geompy.UnionIDs(edges_in, edges_in_cyl_ids)
geompy.addToStudy(edges_in, "Group of edges inside Cylinder (axis = (0, 1, 0), r = 55)") geompy.addToStudy(edges_in, "Group of edges inside Cylinder (axis = (0, 1, 0), r = 55)")