geom/src/GEOM_SWIG/GEOM_TestOthers.py

200 lines
6.7 KiB
Python
Raw Normal View History

2004-12-01 15:39:14 +05:00
# GEOM GEOM_SWIG : binding of C++ implementaion with Python
#
# Copyright (C) 2003 CEA
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# See http://www.salome-platform.org or email : webmaster.salome@opencascade.org
#
#
# File : GEOM_TestOthers.py
# Author : Julia DOROVSKIKH
# Module : GEOM
# $Header$
2004-12-17 16:18:33 +05:00
def TestOtherOperations (geompy, math):
2004-12-01 15:39:14 +05:00
# MakeFaces
p11 = geompy.MakeVertex( 0, 0, 0)
p12 = geompy.MakeVertex(30, 0, 0)
p13 = geompy.MakeVertex(30, 30, 0)
p14 = geompy.MakeVertex( 0, 30, 0)
p21 = geompy.MakeVertex(10, 10, 0)
p22 = geompy.MakeVertex(20, 10, 0)
p23 = geompy.MakeVertex(20, 20, 0)
p24 = geompy.MakeVertex(10, 20, 0)
e11 = geompy.MakeEdge(p11, p12)
e12 = geompy.MakeEdge(p12, p13)
e13 = geompy.MakeEdge(p13, p14)
e14 = geompy.MakeEdge(p14, p11)
e21 = geompy.MakeEdge(p21, p22)
e22 = geompy.MakeEdge(p22, p23)
e23 = geompy.MakeEdge(p23, p24)
e24 = geompy.MakeEdge(p24, p21)
w1 = geompy.MakeWire([e11, e12, e13, e14])
w2 = geompy.MakeWire([e21, e22, e23, e24])
w3 = geompy.MakeTranslation(w2, 0, 0, 10)
id_w1 = geompy.addToStudy(w1, "Outside Wire")
id_w2 = geompy.addToStudy(w2, "Inside Wire")
id_w3 = geompy.addToStudy(w3, "Inside Wire, translated along OZ")
f12 = geompy.MakeFaces([w1, w2], 0)
id_f12 = geompy.addToStudy(f12, "MakeFaces WO + WI")
# OrientationChange
Box = geompy.MakeBoxDXDYDZ(200, 200, 200)
Orientation = geompy.OrientationChange(Box)
id_Orientation = geompy.addToStudy(Orientation, "OrientationChange")
# MakeCommon, MakeCut, MakeFuse, MakeSection
Sphere = geompy.MakeSphereR(100)
Common = geompy.MakeCommon (Box, Sphere)
Cut = geompy.MakeCut (Box, Sphere)
Fuse = geompy.MakeFuse (Box, Sphere)
Section = geompy.MakeSection(Box, Sphere)
id_Common = geompy.addToStudy(Common, "Common")
id_Cut = geompy.addToStudy(Cut, "Cut")
id_Fuse = geompy.addToStudy(Fuse, "Fuse")
id_Section = geompy.addToStudy(Section, "Section")
# Partition
p100 = geompy.MakeVertex(100, 100, 100)
p300 = geompy.MakeVertex(300, 300, 300)
Box1 = geompy.MakeBoxTwoPnt(p100, p300)
Partition = geompy.Partition([Box], [Box1], [], [Box])
id_Partition = geompy.addToStudy(Partition, "Partition of Box by Box1")
# MakeMultiRotation1D, MakeMultiRotation2D
pz = geompy.MakeVertex(0, 0, 100)
vy = geompy.MakeVectorDXDYDZ(0, 100, 0)
MultiRot1D = geompy.MakeMultiRotation1D(f12, vy, pz, 6)
MultiRot2D = geompy.MakeMultiRotation2D(f12, vy, pz, 45, 6, 30, 3)
id_MultiRot1D = geompy.addToStudy(MultiRot1D, "MakeMultiRotation1D")
id_MultiRot2D = geompy.addToStudy(MultiRot2D, "MakeMultiRotation2D")
# MakeFilletAll
radius_fillet = 10.
face5 = geompy.SubShapeSorted(Box, geompy.ShapeType["FACE"], [5])
f_glob_id = geompy.GetSubShapeID(Box, face5)
SuppFace = geompy.SuppressFaces(Box, [f_glob_id])
MakeFilletAll = geompy.MakeFilletAll(SuppFace, radius_fillet)
id_MakeFilletAll = geompy.addToStudy(MakeFilletAll, "MakeFilletAll")
# MakeChamferAll
dimension_chamfer = 10.
MakeChamferAll = geompy.MakeChamferAll(SuppFace, dimension_chamfer)
id_MakeChamferAll = geompy.addToStudy(MakeChamferAll, "MakeChamferAll")
# MakeChamfer
d1 = 13.
d2 = 7.
box_faces = geompy.SubShapeAllSorted(Box, geompy.ShapeType["FACE"])
f_ind_1 = geompy.GetSubShapeID(Box, box_faces[0])
f_ind_2 = geompy.GetSubShapeID(Box, box_faces[1])
f_ind_3 = geompy.GetSubShapeID(Box, box_faces[2])
MakeChamfer = geompy.MakeChamfer(Box, d1, d2, geompy.ShapeType["FACE"],
[f_ind_1, f_ind_2, f_ind_3])
id_MakeChamfer = geompy.addToStudy(MakeChamfer, "MakeChamfer")
# Export
geompy.Export(f12, "/tmp/testExportImport.brep", "BREP")
# ExportBREP, ExportIGES, ExportSTEP
2004-12-17 16:18:33 +05:00
geompy.ExportBREP(f12, "/tmp/testExportImportBREP.brep")
geompy.ExportIGES(f12, "/tmp/testExportImportIGES.iges")
geompy.ExportSTEP(f12, "/tmp/testExportImportSTEP.step")
2004-12-01 15:39:14 +05:00
# Import
Import = geompy.Import("/tmp/testExportImport.brep", "BREP")
id_Import = geompy.addToStudy(Import, "Import")
# ImportBREP, ImportIGES, ImportSTEP
2004-12-17 16:18:33 +05:00
ImportBREP = geompy.ImportBREP("/tmp/testExportImportBREP.brep")
ImportIGES = geompy.ImportIGES("/tmp/testExportImportIGES.iges")
ImportSTEP = geompy.ImportSTEP("/tmp/testExportImportSTEP.step")
2004-12-01 15:39:14 +05:00
id_ImportBREP = geompy.addToStudy(ImportBREP, "ImportBREP")
id_ImportIGES = geompy.addToStudy(ImportIGES, "ImportIGES")
id_ImportSTEP = geompy.addToStudy(ImportSTEP, "ImportSTEP")
# MakeBlockExplode
Compound = geompy.MakeCompound([Box, Sphere])
MakeBlockExplode = geompy.MakeBlockExplode(Compound, 6, 6)
id_MakeBlockExplode = geompy.addToStudy(MakeBlockExplode[0], "MakeBlockExplode")
# CheckCompoundOfBlocks
p1 = geompy.MakeVertex(200, 0, 0)
p2 = geompy.MakeVertex(400, 200, 200)
p3 = geompy.MakeVertex(400, 50, 50)
p4 = geompy.MakeVertex(600, 250, 250)
Box2 = geompy.MakeBoxTwoPnt(p1, p2)
Box3 = geompy.MakeBoxTwoPnt(p3, p4)
Cyl = geompy.MakeCylinderRH(50, 300)
Cone = geompy.MakeConeR1R2H(150, 10, 400)
Compound1 = geompy.MakeCompound([Box, Cyl, Cone, Box3, Box2])
IsValid = geompy.CheckCompoundOfBlocks(Compound1)
if IsValid == 0:
print "The Blocks Compound is NOT VALID"
else:
print "The Blocks Compound is VALID"
IsValid = geompy.CheckCompoundOfBlocks(Box)
if IsValid == 0:
print "The Box is NOT VALID"
else:
print "The Box is VALID"
# test geometrical groups
# CreateGroup
CreateGroup = geompy.CreateGroup(Box, geompy.ShapeType["FACE"])
id_CreateGroup = geompy.addToStudy(CreateGroup, "CreateGroup")
# AddObject
f_ind_4 = geompy.GetSubShapeID(Box, box_faces[3])
f_ind_5 = geompy.GetSubShapeID(Box, box_faces[4])
f_ind_6 = geompy.GetSubShapeID(Box, box_faces[5])
geompy.AddObject(CreateGroup, f_ind_6)
geompy.AddObject(CreateGroup, f_ind_1)
geompy.AddObject(CreateGroup, f_ind_4)
# RemoveObject(theGroup, theSubShapeID)
geompy.RemoveObject(CreateGroup, f_ind_1)
# GetObjectIDs
GetObjectIDs = geompy.GetObjectIDs(CreateGroup)
print "Group of Box's faces includes the following IDs:"
for ObjectID in GetObjectIDs:
print " ", ObjectID