1 # GEOM GEOM_SWIG : binding of C++ omplementaion with Python
3 # Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 # This library is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU Lesser General Public
8 # License as published by the Free Software Foundation; either
9 # version 2.1 of the License.
11 # This library is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 # Lesser General Public License for more details.
16 # You should have received a copy of the GNU Lesser General Public
17 # License along with this library; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 # See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
25 # Author : Paul RASCLE, EDF
37 g = lcc.FindOrLoadComponent("FactoryServer", "GEOM")
38 geom = g._narrow( GEOM.GEOM_Gen )
39 gg = ImportComponentGUI("GEOM")
42 #SRN: modified on Mar 18, 2005
61 def init_geom(theStudy):
63 global myStudy, myBuilder, myStudyId, BasicOp, CurvesOp, PrimOp, ShapesOp, HealOp
64 global InsertOp, BoolOp, TrsfOp, LocalOp, MeasuOp, BlocksOp, GroupOp, father
67 myStudyId = myStudy._get_StudyId()
68 myBuilder = myStudy.NewBuilder()
69 father = myStudy.FindComponent("GEOM")
71 father = myBuilder.NewComponent("GEOM")
72 A1 = myBuilder.FindOrCreateAttribute(father, "AttributeName")
73 FName = A1._narrow(SALOMEDS.AttributeName)
74 FName.SetValue("Geometry")
75 A2 = myBuilder.FindOrCreateAttribute(father, "AttributePixMap")
76 aPixmap = A2._narrow(SALOMEDS.AttributePixMap)
77 aPixmap.SetPixMap("ICON_OBJBROWSER_Geometry")
78 myBuilder.DefineComponentInstance(father,geom)
81 # -----------------------------------------------------------------------------
82 # Assign Operations Interfaces
83 # -----------------------------------------------------------------------------
85 BasicOp = geom.GetIBasicOperations (myStudyId)
86 CurvesOp = geom.GetICurvesOperations (myStudyId)
87 PrimOp = geom.GetI3DPrimOperations (myStudyId)
88 ShapesOp = geom.GetIShapesOperations (myStudyId)
89 HealOp = geom.GetIHealingOperations (myStudyId)
90 InsertOp = geom.GetIInsertOperations (myStudyId)
91 BoolOp = geom.GetIBooleanOperations (myStudyId)
92 TrsfOp = geom.GetITransformOperations(myStudyId)
93 LocalOp = geom.GetILocalOperations (myStudyId)
94 MeasuOp = geom.GetIMeasureOperations (myStudyId)
95 BlocksOp = geom.GetIBlocksOperations (myStudyId)
96 GroupOp = geom.GetIGroupOperations (myStudyId)
101 #SRN: end of modifications
103 def SubShapeName(aSubObj, aMainObj):
105 * Get name for sub-shape aSubObj of shape aMainObj
107 * Example: see GEOM_TestAll.py
109 aSubId = orb.object_to_string(aSubObj)
110 aMainId = orb.object_to_string(aMainObj)
111 index = gg.getIndexTopology(aSubId, aMainId)
112 name = gg.getShapeTypeString(aSubId) + "_%d"%(index)
115 def addToStudy(aShape, aName):
117 * Publish in study aShape with name aName
119 * Example: see GEOM_TestAll.py
122 aSObject = geom.AddInStudy(myStudy, aShape, aName, None)
124 print "addToStudy() failed"
126 return aShape.GetStudyEntry()
128 def addToStudyInFather(aFather, aShape, aName):
130 * Publish in study aShape with name aName as sub-object of previously published aFather
132 * Example: see GEOM_TestAll.py
135 aSObject = geom.AddInStudy(myStudy, aShape, aName, aFather)
137 print "addToStudyInFather() failed"
139 return aShape.GetStudyEntry()
141 # -----------------------------------------------------------------------------
142 # enumeration ShapeType as a dictionary
143 # -----------------------------------------------------------------------------
145 ShapeType = {"COMPOUND":0, "COMPSOLID":1, "SOLID":2, "SHELL":3, "FACE":4, "WIRE":5, "EDGE":6, "VERTEX":7, "SHAPE":8}
147 # -----------------------------------------------------------------------------
149 # -----------------------------------------------------------------------------
151 def MakeVertex(theX, theY, theZ):
153 * Create point by three coordinates.
154 * \param theX The X coordinate of the point.
155 * \param theY The Y coordinate of the point.
156 * \param theZ The Z coordinate of the point.
157 * \return New GEOM_Object, containing the created point.
159 * Example: see GEOM_TestAll.py
161 anObj = BasicOp.MakePointXYZ(theX, theY, theZ)
162 if BasicOp.IsDone() == 0:
163 print "MakePointXYZ : ", BasicOp.GetErrorCode()
166 def MakeVertexWithRef(theReference, theX, theY, theZ):
168 * Create a point, distant from the referenced point
169 * on the given distances along the coordinate axes.
170 * \param theReference The referenced point.
171 * \param theX Displacement from the referenced point along OX axis.
172 * \param theY Displacement from the referenced point along OY axis.
173 * \param theZ Displacement from the referenced point along OZ axis.
174 * \return New GEOM_Object, containing the created point.
176 * Example: see GEOM_TestAll.py
178 anObj = BasicOp.MakePointWithReference(theReference, theX, theY, theZ)
179 if BasicOp.IsDone() == 0:
180 print "MakePointWithReference : ", BasicOp.GetErrorCode()
183 def MakeVertexOnCurve(theRefCurve, theParameter):
185 * Create a point, corresponding to the given parameter on the given curve.
186 * \param theRefCurve The referenced curve.
187 * \param theParameter Value of parameter on the referenced curve.
188 * \return New GEOM_Object, containing the created point.
190 * Example: see GEOM_TestAll.py
192 anObj = BasicOp.MakePointOnCurve(theRefCurve, theParameter)
193 if BasicOp.IsDone() == 0:
194 print "MakePointOnCurve : ", BasicOp.GetErrorCode()
197 def MakeVectorDXDYDZ(theDX, theDY, theDZ):
199 * Create a vector with the given components.
200 * \param theDX X component of the vector.
201 * \param theDY Y component of the vector.
202 * \param theDZ Z component of the vector.
203 * \return New GEOM_Object, containing the created vector.
205 * Example: see GEOM_TestAll.py
207 anObj = BasicOp.MakeVectorDXDYDZ(theDX, theDY, theDZ)
208 if BasicOp.IsDone() == 0:
209 print "MakeVectorDXDYDZ : ", BasicOp.GetErrorCode()
212 def MakeVector(thePnt1, thePnt2):
214 * Create a vector between two points.
215 * \param thePnt1 Start point for the vector.
216 * \param thePnt2 End point for the vector.
217 * \return New GEOM_Object, containing the created vector.
219 * Example: see GEOM_TestAll.py
221 anObj = BasicOp.MakeVectorTwoPnt(thePnt1, thePnt2)
222 if BasicOp.IsDone() == 0:
223 print "MakeVectorTwoPnt : ", BasicOp.GetErrorCode()
226 def MakeLine(thePnt, theDir):
228 * Create a line, passing through the given point
229 * and parrallel to the given direction
230 * \param thePnt Point. The resulting line will pass through it.
231 * \param theDir Direction. The resulting line will be parallel to it.
232 * \return New GEOM_Object, containing the created line.
234 * Example: see GEOM_TestAll.py
236 anObj = BasicOp.MakeLine(thePnt, theDir)
237 if BasicOp.IsDone() == 0:
238 print "MakeLine : ", BasicOp.GetErrorCode()
241 def MakeLineTwoPnt(thePnt1, thePnt2):
243 * Create a line, passing through the given points
244 * \param thePnt1 First of two points, defining the line.
245 * \param thePnt2 Second of two points, defining the line.
246 * \return New GEOM_Object, containing the created line.
248 * Example: see GEOM_TestAll.py
250 anObj = BasicOp.MakeLineTwoPnt(thePnt1, thePnt2)
251 if BasicOp.IsDone() == 0:
252 print "MakeLineTwoPnt : ", BasicOp.GetErrorCode()
255 def MakePlane(thePnt, theVec, theTrimSize):
257 * Create a plane, passing through the given point
258 * and normal to the given vector.
259 * \param thePnt Point, the plane has to pass through.
260 * \param theVec Vector, defining the plane normal direction.
261 * \param theTrimSize Half size of a side of quadrangle face, representing the plane.
262 * \return New GEOM_Object, containing the created plane.
264 * Example: see GEOM_TestAll.py
266 anObj = BasicOp.MakePlanePntVec(thePnt, theVec, theTrimSize)
267 if BasicOp.IsDone() == 0:
268 print "MakePlanePntVec : ", BasicOp.GetErrorCode()
271 def MakePlaneThreePnt(thePnt1, thePnt2, thePnt3, theTrimSize):
273 * Create a plane, passing through the three given points
274 * \param thePnt1 First of three points, defining the plane.
275 * \param thePnt2 Second of three points, defining the plane.
276 * \param thePnt3 Fird of three points, defining the plane.
277 * \param theTrimSize Half size of a side of quadrangle face, representing the plane.
278 * \return New GEOM_Object, containing the created plane.
280 * Example: see GEOM_TestAll.py
282 anObj = BasicOp.MakePlaneThreePnt(thePnt1, thePnt2, thePnt3, theTrimSize)
283 if BasicOp.IsDone() == 0:
284 print "MakePlaneThreePnt : ", BasicOp.GetErrorCode()
287 def MakePlaneFace(theFace, theTrimSize):
289 * Create a plane, similar to the existing one, but with another size of representing face.
290 * \param theFace Referenced plane.
291 * \param theTrimSize New half size of a side of quadrangle face, representing the plane.
292 * \return New GEOM_Object, containing the created plane.
294 * Example: see GEOM_TestAll.py
296 anObj = BasicOp.MakePlaneFace(theFace, theTrimSize)
297 if BasicOp.IsDone() == 0:
298 print "MakePlaneFace : ", BasicOp.GetErrorCode()
301 def MakeMarker(OX,OY,OZ, XDX,XDY,XDZ, YDX,YDY,YDZ):
303 * Create a local coordinate system.
304 * \param OX,OY,OZ Three coordinates of coordinate system origin.
305 * \param XDX,XDY,XDZ Three components of OX direction
306 * \param YDX,YDY,YDZ Three components of OY direction
307 * \return New GEOM_Object, containing the created coordinate system.
309 * Example: see GEOM_TestAll.py
311 anObj = BasicOp.MakeMarker(OX,OY,OZ, XDX,XDY,XDZ, YDX,YDY,YDZ)
312 if BasicOp.IsDone() == 0:
313 print "MakeMarker : ", BasicOp.GetErrorCode()
316 def MakeMarkerPntTwoVec(theOrigin, theXVec, theYVec):
318 * Create a local coordinate system.
319 * \param theOrigin Point of coordinate system origin.
320 * \param theXVec Vector of X direction
321 * \param theYVec Vector of Y direction
322 * \return New GEOM_Object, containing the created coordinate system.
324 O = PointCoordinates( theOrigin )
326 for vec in [ theXVec, theYVec ]:
327 v1, v2 = SubShapeAll( vec, ShapeType["VERTEX"] )
328 p1 = PointCoordinates( v1 )
329 p2 = PointCoordinates( v2 )
330 for i in range( 0, 3 ):
331 OXOY.append( p2[i] - p1[i] )
333 anObj = BasicOp.MakeMarker( O[0], O[1], O[2],
334 OXOY[0], OXOY[1], OXOY[2],
335 OXOY[3], OXOY[4], OXOY[5], )
336 if BasicOp.IsDone() == 0:
337 print "MakeMarker : ", BasicOp.GetErrorCode()
340 # -----------------------------------------------------------------------------
342 # -----------------------------------------------------------------------------
344 def MakeArc(thePnt1, thePnt2, thePnt3):
346 * Create an arc of circle, passing through three given points.
347 * \param thePnt1 Start point of the arc.
348 * \param thePnt2 Middle point of the arc.
349 * \param thePnt3 End point of the arc.
350 * \return New GEOM_Object, containing the created arc.
352 * Example: see GEOM_TestAll.py
354 anObj = CurvesOp.MakeArc(thePnt1, thePnt2, thePnt3)
355 if CurvesOp.IsDone() == 0:
356 print "MakeArc : ", CurvesOp.GetErrorCode()
359 def MakeCircle(thePnt, theVec, theR):
361 * Create a circle with given center, normal vector and radius.
362 * \param thePnt Circle center.
363 * \param theVec Vector, normal to the plane of the circle.
364 * \param theR Circle radius.
365 * \return New GEOM_Object, containing the created circle.
367 * Example: see GEOM_TestAll.py
369 anObj = CurvesOp.MakeCirclePntVecR(thePnt, theVec, theR)
370 if CurvesOp.IsDone() == 0:
371 print "MakeCirclePntVecR : ", CurvesOp.GetErrorCode()
374 def MakeCircleThreePnt(thePnt1, thePnt2, thePnt3):
376 * Create a circle, passing through three given points
377 * \param thePnt1,thePnt2,thePnt3 Points, defining the circle.
378 * \return New GEOM_Object, containing the created circle.
380 * Example: see GEOM_TestAll.py
382 anObj = CurvesOp.MakeCircleThreePnt(thePnt1, thePnt2, thePnt3)
383 if CurvesOp.IsDone() == 0:
384 print "MakeCircleThreePnt : ", CurvesOp.GetErrorCode()
387 def MakeEllipse(thePnt, theVec, theRMajor, theRMinor):
389 * Create an ellipse with given center, normal vector and radiuses.
390 * \param thePnt Ellipse center.
391 * \param theVec Vector, normal to the plane of the ellipse.
392 * \param theRMajor Major ellipse radius.
393 * \param theRMinor Minor ellipse radius.
394 * \return New GEOM_Object, containing the created ellipse.
396 * Example: see GEOM_TestAll.py
398 anObj = CurvesOp.MakeEllipse(thePnt, theVec, theRMajor, theRMinor)
399 if CurvesOp.IsDone() == 0:
400 print "MakeEllipse : ", CurvesOp.GetErrorCode()
403 def MakePolyline(thePoints):
405 * Create a polyline on the set of points.
406 * \param thePoints Sequence of points for the polyline.
407 * \return New GEOM_Object, containing the created polyline.
409 * Example: see GEOM_TestAll.py
411 anObj = CurvesOp.MakePolyline(thePoints)
412 if CurvesOp.IsDone() == 0:
413 print "MakePolyline : ", CurvesOp.GetErrorCode()
416 def MakeBezier(thePoints):
418 * Create bezier curve on the set of points.
419 * \param thePoints Sequence of points for the bezier curve.
420 * \return New GEOM_Object, containing the created bezier curve.
422 * Example: see GEOM_TestAll.py
424 anObj = CurvesOp.MakeSplineBezier(thePoints)
425 if CurvesOp.IsDone() == 0:
426 print "MakeSplineBezier : ", CurvesOp.GetErrorCode()
429 def MakeInterpol(thePoints):
431 * Create B-Spline curve on the set of points.
432 * \param thePoints Sequence of points for the B-Spline curve.
433 * \return New GEOM_Object, containing the created B-Spline curve.
435 * Example: see GEOM_TestAll.py
437 anObj = CurvesOp.MakeSplineInterpolation(thePoints)
438 if CurvesOp.IsDone() == 0:
439 print "MakeSplineInterpolation : ", CurvesOp.GetErrorCode()
442 def MakeSketcher(theCommand, theWorkingPlane = [0,0,0, 0,0,1, 1,0,0]):
444 * Create a sketcher (wire or face), following the textual description,
445 * passed through \a theCommand argument. \n
446 * Edges of the resulting wire or face will be arcs of circles and/or linear segments. \n
447 * Format of the description string have to be the following:
449 * "Sketcher[:F x1 y1]:CMD[:CMD[:CMD...]]"
452 * - x1, y1 are coordinates of the first sketcher point (zero by default),
454 * - "R angle" : Set the direction by angle
455 * - "D dx dy" : Set the direction by DX & DY
458 * - "TT x y" : Create segment by point at X & Y
459 * - "T dx dy" : Create segment by point with DX & DY
460 * - "L length" : Create segment by direction & Length
461 * - "IX x" : Create segment by direction & Intersect. X
462 * - "IY y" : Create segment by direction & Intersect. Y
465 * - "C radius length" : Create arc by direction, radius and length(in degree)
468 * - "WW" : Close Wire (to finish)
469 * - "WF" : Close Wire and build face (to finish)
471 * \param theCommand String, defining the sketcher in local
472 * coordinates of the working plane.
473 * \param theWorkingPlane Nine double values, defining origin,
474 * OZ and OX directions of the working plane.
475 * \return New GEOM_Object, containing the created wire.
477 * Example: see GEOM_TestAll.py
479 anObj = CurvesOp.MakeSketcher(theCommand, theWorkingPlane)
480 if CurvesOp.IsDone() == 0:
481 print "MakeSketcher : ", CurvesOp.GetErrorCode()
484 def MakeSketcherOnPlane(theCommand, theWorkingPlane):
486 * Create a sketcher (wire or face), following the textual description,
487 * passed through \a theCommand argument. \n
488 * For format of the description string see the previous method.\n
489 * \param theCommand String, defining the sketcher in local
490 * coordinates of the working plane.
491 * \param theWorkingPlane Planar Face of the working plane.
492 * \return New GEOM_Object, containing the created wire.
494 anObj = CurvesOp.MakeSketcherOnPlane(theCommand, theWorkingPlane)
495 if CurvesOp.IsDone() == 0:
496 print "MakeSketcher : ", CurvesOp.GetErrorCode()
499 # -----------------------------------------------------------------------------
500 # Create 3D Primitives
501 # -----------------------------------------------------------------------------
503 def MakeBox(x1,y1,z1,x2,y2,z2):
505 * Create a box by coordinates of two opposite vertices.
507 * Example: see GEOM_TestAll.py
509 pnt1 = MakeVertex(x1,y1,z1)
510 pnt2 = MakeVertex(x2,y2,z2)
511 return MakeBoxTwoPnt(pnt1,pnt2)
513 def MakeBoxDXDYDZ(theDX, theDY, theDZ):
515 * Create a box with specified dimensions along the coordinate axes
516 * and with edges, parallel to the coordinate axes.
517 * Center of the box will be at point (DX/2, DY/2, DZ/2).
518 * \param theDX Length of Box edges, parallel to OX axis.
519 * \param theDY Length of Box edges, parallel to OY axis.
520 * \param theDZ Length of Box edges, parallel to OZ axis.
521 * \return New GEOM_Object, containing the created box.
523 * Example: see GEOM_TestAll.py
525 anObj = PrimOp.MakeBoxDXDYDZ(theDX, theDY, theDZ)
526 if PrimOp.IsDone() == 0:
527 print "MakeBoxDXDYDZ : ", PrimOp.GetErrorCode()
530 def MakeBoxTwoPnt(thePnt1, thePnt2):
532 * Create a box with two specified opposite vertices,
533 * and with edges, parallel to the coordinate axes
534 * \param thePnt1 First of two opposite vertices.
535 * \param thePnt2 Second of two opposite vertices.
536 * \return New GEOM_Object, containing the created box.
538 * Example: see GEOM_TestAll.py
540 anObj = PrimOp.MakeBoxTwoPnt(thePnt1, thePnt2)
541 if PrimOp.IsDone() == 0:
542 print "MakeBoxTwoPnt : ", PrimOp.GetErrorCode()
545 def MakeCylinder(thePnt, theAxis, theR, theH):
547 * Create a cylinder with given base point, axis, radius and height.
548 * \param thePnt Central point of cylinder base.
549 * \param theAxis Cylinder axis.
550 * \param theR Cylinder radius.
551 * \param theH Cylinder height.
552 * \return New GEOM_Object, containing the created cylinder.
554 * Example: see GEOM_TestAll.py
556 anObj = PrimOp.MakeCylinderPntVecRH(thePnt, theAxis, theR, theH)
557 if PrimOp.IsDone() == 0:
558 print "MakeCylinderPntVecRH : ", PrimOp.GetErrorCode()
561 def MakeCylinderRH(theR, theH):
563 * Create a cylinder with given radius and height at
564 * the origin of coordinate system. Axis of the cylinder
565 * will be collinear to the OZ axis of the coordinate system.
566 * \param theR Cylinder radius.
567 * \param theH Cylinder height.
568 * \return New GEOM_Object, containing the created cylinder.
570 * Example: see GEOM_TestAll.py
572 anObj = PrimOp.MakeCylinderRH(theR, theH)
573 if PrimOp.IsDone() == 0:
574 print "MakeCylinderRH : ", PrimOp.GetErrorCode()
577 def MakeSpherePntR(thePnt, theR):
579 * Create a sphere with given center and radius.
580 * \param thePnt Sphere center.
581 * \param theR Sphere radius.
582 * \return New GEOM_Object, containing the created sphere.
584 * Example: see GEOM_TestAll.py
586 anObj = PrimOp.MakeSpherePntR(thePnt, theR)
587 if PrimOp.IsDone() == 0:
588 print "MakeSpherePntR : ", PrimOp.GetErrorCode()
591 def MakeSphere(x, y, z, theR):
593 * Create a sphere with given center and radius.
594 * \param x,y,z Coordinates of sphere center.
595 * \param theR Sphere radius.
596 * \return New GEOM_Object, containing the created sphere.
598 * Example: see GEOM_TestAll.py
600 point = MakeVertex(x, y, z)
601 anObj = MakeSpherePntR(point, theR)
604 def MakeSphereR(theR):
606 * Create a sphere with given radius at the origin of coordinate system.
607 * \param theR Sphere radius.
608 * \return New GEOM_Object, containing the created sphere.
610 * Example: see GEOM_TestAll.py
612 anObj = PrimOp.MakeSphereR(theR)
613 if PrimOp.IsDone() == 0:
614 print "MakeSphereR : ", PrimOp.GetErrorCode()
617 def MakeCone(thePnt, theAxis, theR1, theR2, theH):
619 * Create a cone with given base point, axis, height and radiuses.
620 * \param thePnt Central point of the first cone base.
621 * \param theAxis Cone axis.
622 * \param theR1 Radius of the first cone base.
623 * \param theR2 Radius of the second cone base.
624 * \note If both radiuses are non-zero, the cone will be truncated.
625 * \note If the radiuses are equal, a cylinder will be created instead.
626 * \param theH Cone height.
627 * \return New GEOM_Object, containing the created cone.
629 * Example: see GEOM_TestAll.py
631 anObj = PrimOp.MakeConePntVecR1R2H(thePnt, theAxis, theR1, theR2, theH)
632 if PrimOp.IsDone() == 0:
633 print "MakeConePntVecR1R2H : ", PrimOp.GetErrorCode()
636 def MakeConeR1R2H(theR1, theR2, theH):
638 * Create a cone with given height and radiuses at
639 * the origin of coordinate system. Axis of the cone will
640 * be collinear to the OZ axis of the coordinate system.
641 * \param theR1 Radius of the first cone base.
642 * \param theR2 Radius of the second cone base.
643 * \note If both radiuses are non-zero, the cone will be truncated.
644 * \note If the radiuses are equal, a cylinder will be created instead.
645 * \param theH Cone height.
646 * \return New GEOM_Object, containing the created cone.
648 * Example: see GEOM_TestAll.py
650 anObj = PrimOp.MakeConeR1R2H(theR1, theR2, theH)
651 if PrimOp.IsDone() == 0:
652 print "MakeConeR1R2H : ", PrimOp.GetErrorCode()
655 def MakeTorus(thePnt, theVec, theRMajor, theRMinor):
657 * Create a torus with given center, normal vector and radiuses.
658 * \param thePnt Torus central point.
659 * \param theVec Torus axis of symmetry.
660 * \param theRMajor Torus major radius.
661 * \param theRMinor Torus minor radius.
662 * \return New GEOM_Object, containing the created torus.
664 * Example: see GEOM_TestAll.py
666 anObj = PrimOp.MakeTorusPntVecRR(thePnt, theVec, theRMajor, theRMinor)
667 if PrimOp.IsDone() == 0:
668 print "MakeTorusPntVecRR : ", PrimOp.GetErrorCode()
671 def MakeTorusRR(theRMajor, theRMinor):
673 * Create a torus with given radiuses at the origin of coordinate system.
674 * \param theRMajor Torus major radius.
675 * \param theRMinor Torus minor radius.
676 * \return New GEOM_Object, containing the created torus.
678 * Example: see GEOM_TestAll.py
680 anObj = PrimOp.MakeTorusRR(theRMajor, theRMinor)
681 if PrimOp.IsDone() == 0:
682 print "MakeTorusRR : ", PrimOp.GetErrorCode()
685 def MakePrism(theBase, thePoint1, thePoint2):
687 * Create a shape by extrusion of the base shape along a vector, defined by two points.
688 * \param theBase Base shape to be extruded.
689 * \param thePoint1 First end of extrusion vector.
690 * \param thePoint2 Second end of extrusion vector.
691 * \return New GEOM_Object, containing the created prism.
693 * Example: see GEOM_TestAll.py
695 anObj = PrimOp.MakePrismTwoPnt(theBase, thePoint1, thePoint2)
696 if PrimOp.IsDone() == 0:
697 print "MakePrismTwoPnt : ", PrimOp.GetErrorCode()
700 def MakePrismVecH(theBase, theVec, theH):
702 * Create a shape by extrusion of the base shape along the vector,
703 * i.e. all the space, transfixed by the base shape during its translation
704 * along the vector on the given distance.
705 * \param theBase Base shape to be extruded.
706 * \param theVec Direction of extrusion.
707 * \param theH Prism dimension along theVec.
708 * \return New GEOM_Object, containing the created prism.
710 * Example: see GEOM_TestAll.py
712 anObj = PrimOp.MakePrismVecH(theBase, theVec, theH)
713 if PrimOp.IsDone() == 0:
714 print "MakePrismVecH : ", PrimOp.GetErrorCode()
717 def MakePipe(theBase, thePath):
719 * Create a shape by extrusion of the base shape along
720 * the path shape. The path shape can be a wire or an edge.
721 * \param theBase Base shape to be extruded.
722 * \param thePath Path shape to extrude the base shape along it.
723 * \return New GEOM_Object, containing the created pipe.
725 * Example: see GEOM_TestAll.py
727 anObj = PrimOp.MakePipe(theBase, thePath)
728 if PrimOp.IsDone() == 0:
729 print "MakePipe : ", PrimOp.GetErrorCode()
732 def MakeRevolution(theBase, theAxis, theAngle):
734 * Create a shape by revolution of the base shape around the axis
735 * on the given angle, i.e. all the space, transfixed by the base
736 * shape during its rotation around the axis on the given angle.
737 * \param theBase Base shape to be rotated.
738 * \param theAxis Rotation axis.
739 * \param theAngle Rotation angle in radians.
740 * \return New GEOM_Object, containing the created revolution.
742 * Example: see GEOM_TestAll.py
744 anObj = PrimOp.MakeRevolutionAxisAngle(theBase, theAxis, theAngle)
745 if PrimOp.IsDone() == 0:
746 print "MakeRevolutionAxisAngle : ", PrimOp.GetErrorCode()
749 # -----------------------------------------------------------------------------
751 # -----------------------------------------------------------------------------
753 def MakeEdge(thePnt1, thePnt2):
755 * Create a linear edge with specified ends.
756 * \param thePnt1 Point for the first end of edge.
757 * \param thePnt2 Point for the second end of edge.
758 * \return New GEOM_Object, containing the created edge.
760 * Example: see GEOM_TestAll.py
762 anObj = ShapesOp.MakeEdge(thePnt1, thePnt2)
763 if ShapesOp.IsDone() == 0:
764 print "MakeEdge : ", ShapesOp.GetErrorCode()
767 def MakeWire(theEdgesAndWires):
769 * Create a wire from the set of edges and wires.
770 * \param theEdgesAndWires List of edges and/or wires.
771 * \return New GEOM_Object, containing the created wire.
773 * Example: see GEOM_TestAll.py
775 anObj = ShapesOp.MakeWire(theEdgesAndWires)
776 if ShapesOp.IsDone() == 0:
777 print "MakeWire : ", ShapesOp.GetErrorCode()
780 def MakeFace(theWire, isPlanarWanted):
782 * Create a face on the given wire.
783 * \param theWire Wire to build the face on.
784 * \param isPlanarWanted If TRUE, only planar face will be built.
785 * If impossible, NULL object will be returned.
786 * \return New GEOM_Object, containing the created face.
788 * Example: see GEOM_TestAll.py
790 anObj = ShapesOp.MakeFace(theWire, isPlanarWanted)
791 if ShapesOp.IsDone() == 0:
792 print "MakeFace : ", ShapesOp.GetErrorCode()
795 def MakeFaceWires(theWires, isPlanarWanted):
797 * Create a face on the given wires set.
798 * \param theWires List of wires to build the face on.
799 * \param isPlanarWanted If TRUE, only planar face will be built.
800 * If impossible, NULL object will be returned.
801 * \return New GEOM_Object, containing the created face.
803 * Example: see GEOM_TestAll.py
805 anObj = ShapesOp.MakeFaceWires(theWires, isPlanarWanted)
806 if ShapesOp.IsDone() == 0:
807 print "MakeFaceWires : ", ShapesOp.GetErrorCode()
810 def MakeFaces(theWires, isPlanarWanted):
812 * Shortcut to MakeFaceWires()
814 * Example: see GEOM_TestOthers.py
816 anObj = MakeFaceWires(theWires, isPlanarWanted)
819 def MakeShell(theFacesAndShells):
821 * Create a shell from the set of faces and shells.
822 * \param theFacesAndShells List of faces and/or shells.
823 * \return New GEOM_Object, containing the created shell.
825 * Example: see GEOM_TestAll.py
827 anObj = ShapesOp.MakeShell(theFacesAndShells)
828 if ShapesOp.IsDone() == 0:
829 print "MakeShell : ", ShapesOp.GetErrorCode()
832 def MakeSolid(theShells):
834 * Create a solid, bounded by the given shells.
835 * \param theShells Sequence of bounding shells.
836 * \return New GEOM_Object, containing the created solid.
838 * Example: see GEOM_TestAll.py
840 anObj = ShapesOp.MakeSolidShells(theShells)
841 if ShapesOp.IsDone() == 0:
842 print "MakeSolid : ", ShapesOp.GetErrorCode()
845 def MakeCompound(theShapes):
847 * Create a compound of the given shapes.
848 * \param theShapes List of shapes to put in compound.
849 * \return New GEOM_Object, containing the created compound.
851 * Example: see GEOM_TestAll.py
853 anObj = ShapesOp.MakeCompound(theShapes)
854 if ShapesOp.IsDone() == 0:
855 print "MakeCompound : ", ShapesOp.GetErrorCode()
858 def NumberOfFaces(theShape):
860 * Gives quantity of faces in the given shape.
861 * \param theShape Shape to count faces of.
862 * \return Quantity of faces.
864 * Example: see GEOM_TestOthers.py
866 nb_faces = ShapesOp.NumberOfFaces(theShape)
867 if ShapesOp.IsDone() == 0:
868 print "NumberOfFaces : ", ShapesOp.GetErrorCode()
871 def NumberOfEdges(theShape):
873 * Gives quantity of edges in the given shape.
874 * \param theShape Shape to count edges of.
875 * \return Quantity of edges.
877 * Example: see GEOM_TestOthers.py
879 nb_edges = ShapesOp.NumberOfEdges(theShape)
880 if ShapesOp.IsDone() == 0:
881 print "NumberOfEdges : ", ShapesOp.GetErrorCode()
884 def ChangeOrientation(theShape):
886 * Reverses an orientation the given shape.
887 * \param theShape Shape to be reversed.
888 * \return The reversed copy of theShape.
890 * Example: see GEOM_TestAll.py
892 anObj = ShapesOp.ChangeOrientation(theShape)
893 if ShapesOp.IsDone() == 0:
894 print "ChangeOrientation : ", ShapesOp.GetErrorCode()
897 def OrientationChange(theShape):
899 * Shortcut to ChangeOrientation()
901 * Example: see GEOM_TestOthers.py
903 anObj = ChangeOrientation(theShape)
906 def GetFreeFacesIDs(theShape):
908 * Retrieve all free faces from the given shape.
909 * Free face is a face, which is not shared between two shells of the shape.
910 * \param theShape Shape to find free faces in.
911 * \return List of IDs of all free faces, contained in theShape.
913 * Example: see GEOM_TestOthers.py
915 anIDs = ShapesOp.GetFreeFacesIDs(theShape)
916 if ShapesOp.IsDone() == 0:
917 print "GetFreeFacesIDs : ", ShapesOp.GetErrorCode()
920 def GetSharedShapes(theShape1, theShape2, theShapeType):
922 * Get all sub-shapes of theShape1 of the given type, shared with theShape2.
923 * \param theShape1 Shape to find sub-shapes in.
924 * \param theShape2 Shape to find shared sub-shapes with.
925 * \param theShapeType Type of sub-shapes to be retrieved.
926 * \return List of sub-shapes of theShape1, shared with theShape2.
928 * Example: see GEOM_TestOthers.py
930 aList = ShapesOp.GetSharedShapes(theShape1, theShape2, theShapeType)
931 if ShapesOp.IsDone() == 0:
932 print "GetSharedShapes : ", ShapesOp.GetErrorCode()
935 def GetShapesOnPlane(theShape, theShapeType, theAx1, theState):
937 * Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
938 * the specified plane by the certain way, defined through \a theState parameter.
939 * \param theShape Shape to find sub-shapes of.
940 * \param theShapeType Type of sub-shapes to be retrieved.
941 * \param theAx1 Vector (or line, or linear edge), specifying normal
942 * direction and location of the plane to find shapes on.
943 * \param theState The state of the subshapes to find. It can be one of
944 * ST_ON, ST_OUT, ST_ONOUT, ST_IN, ST_ONIN.
945 * \return List of all found sub-shapes.
947 * Example: see GEOM_TestOthers.py
949 aList = ShapesOp.GetShapesOnPlane(theShape, theShapeType, theAx1, theState)
950 if ShapesOp.IsDone() == 0:
951 print "GetShapesOnPlane : ", ShapesOp.GetErrorCode()
954 def GetShapesOnPlaneIDs(theShape, theShapeType, theAx1, theState):
956 * Works like the above method, but returns list of sub-shapes indices
958 aList = ShapesOp.GetShapesOnPlaneIDs(theShape, theShapeType, theAx1, theState)
959 if ShapesOp.IsDone() == 0:
960 print "GetShapesOnPlaneIDs : ", ShapesOp.GetErrorCode()
963 def GetShapesOnCylinder(theShape, theShapeType, theAxis, theRadius, theState):
965 * Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
966 * the specified cylinder by the certain way, defined through \a theState parameter.
967 * \param theShape Shape to find sub-shapes of.
968 * \param theShapeType Type of sub-shapes to be retrieved.
969 * \param theAxis Vector (or line, or linear edge), specifying
970 * axis of the cylinder to find shapes on.
971 * \param theRadius Radius of the cylinder to find shapes on.
972 * \param theState The state of the subshapes to find. It can be one of
973 * ST_ON, ST_OUT, ST_ONOUT, ST_IN, ST_ONIN.
974 * \return List of all found sub-shapes.
976 * Example: see GEOM_TestOthers.py
978 aList = ShapesOp.GetShapesOnCylinder(theShape, theShapeType, theAxis, theRadius, theState)
979 if ShapesOp.IsDone() == 0:
980 print "GetShapesOnCylinder : ", ShapesOp.GetErrorCode()
983 def GetShapesOnCylinderIDs(theShape, theShapeType, theAxis, theRadius, theState):
985 * Works like the above method, but returns list of sub-shapes indices
987 aList = ShapesOp.GetShapesOnCylinderIDs(theShape, theShapeType, theAxis, theRadius, theState)
988 if ShapesOp.IsDone() == 0:
989 print "GetShapesOnCylinderIDs : ", ShapesOp.GetErrorCode()
992 def GetShapesOnSphere(theShape, theShapeType, theCenter, theRadius, theState):
994 * Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
995 * the specified sphere by the certain way, defined through \a theState parameter.
996 * \param theShape Shape to find sub-shapes of.
997 * \param theShapeType Type of sub-shapes to be retrieved.
998 * \param theCenter Point, specifying center of the sphere to find shapes on.
999 * \param theRadius Radius of the sphere to find shapes on.
1000 * \param theState The state of the subshapes to find. It can be one of
1001 * ST_ON, ST_OUT, ST_ONOUT, ST_IN, ST_ONIN.
1002 * \return List of all found sub-shapes.
1004 * Example: see GEOM_TestOthers.py
1006 aList = ShapesOp.GetShapesOnSphere(theShape, theShapeType, theCenter, theRadius, theState)
1007 if ShapesOp.IsDone() == 0:
1008 print "GetShapesOnSphere : ", ShapesOp.GetErrorCode()
1011 def GetShapesOnSphereIDs(theShape, theShapeType, theCenter, theRadius, theState):
1013 * Works like the above method, but returns list of sub-shapes indices
1015 aList = ShapesOp.GetShapesOnSphereIDs(theShape, theShapeType, theCenter, theRadius, theState)
1016 if ShapesOp.IsDone() == 0:
1017 print "GetShapesOnSphereIDs : ", ShapesOp.GetErrorCode()
1020 def GetInPlace(theShapeWhere, theShapeWhat):
1022 * Get sub-shape(s) of theShapeWhere, which are
1023 * coincident with \a theShapeWhat or could be a part of it.
1024 * \param theShapeWhere Shape to find sub-shapes of.
1025 * \param theShapeWhat Shape, specifying what to find.
1026 * \return Group of all found sub-shapes or a single found sub-shape.
1028 * Example: see GEOM_TestOthers.py
1030 anObj = ShapesOp.GetInPlace(theShapeWhere, theShapeWhat)
1031 if ShapesOp.IsDone() == 0:
1032 print "GetInPlace : ", ShapesOp.GetErrorCode()
1035 # -----------------------------------------------------------------------------
1036 # Access to sub-shapes by their unique IDs inside the main shape.
1037 # -----------------------------------------------------------------------------
1039 def GetSubShape(aShape, ListOfID):
1041 * Obtain a composite sub-shape of <aShape>, composed from sub-shapes
1042 * of <aShape>, selected by their unique IDs inside <aShape>
1044 * Example: see GEOM_TestAll.py
1046 anObj = geom.AddSubShape(aShape,ListOfID)
1049 def GetSubShapeID(aShape, aSubShape):
1051 * Obtain unique ID of sub-shape <aSubShape> inside <aShape>
1053 * Example: see GEOM_TestAll.py
1055 anID = LocalOp.GetSubShapeIndex(aShape, aSubShape)
1056 if LocalOp.IsDone() == 0:
1057 print "GetSubShapeIndex : ", LocalOp.GetErrorCode()
1060 # -----------------------------------------------------------------------------
1062 # -----------------------------------------------------------------------------
1064 def SubShapeAll(aShape, aType):
1066 * Explode a shape on subshapes of a given type.
1067 * \param theShape Shape to be exploded.
1068 * \param theShapeType Type of sub-shapes to be retrieved.
1069 * \return List of sub-shapes of type theShapeType, contained in theShape.
1071 * Example: see GEOM_TestAll.py
1073 ListObj = ShapesOp.MakeExplode(aShape,aType,0)
1074 if ShapesOp.IsDone() == 0:
1075 print "MakeExplode : ", ShapesOp.GetErrorCode()
1078 def SubShapeAllIDs(aShape, aType):
1080 * Explode a shape on subshapes of a given type.
1081 * \param theShape Shape to be exploded.
1082 * \param theShapeType Type of sub-shapes to be retrieved.
1083 * \return List of IDs of sub-shapes.
1085 ListObj = ShapesOp.SubShapeAllIDs(aShape,aType,0)
1086 if ShapesOp.IsDone() == 0:
1087 print "SubShapeAllIDs : ", ShapesOp.GetErrorCode()
1090 def SubShapeAllSorted(aShape, aType):
1092 * Explode a shape on subshapes of a given type.
1093 * Sub-shapes will be sorted by coordinates of their gravity centers.
1094 * \param theShape Shape to be exploded.
1095 * \param theShapeType Type of sub-shapes to be retrieved.
1096 * \return List of sub-shapes of type theShapeType, contained in theShape.
1098 * Example: see GEOM_TestAll.py
1100 ListObj = ShapesOp.MakeExplode(aShape,aType,1)
1101 if ShapesOp.IsDone() == 0:
1102 print "MakeExplode : ", ShapesOp.GetErrorCode()
1105 def SubShapeAllSortedIDs(aShape, aType):
1107 * Explode a shape on subshapes of a given type.
1108 * Sub-shapes will be sorted by coordinates of their gravity centers.
1109 * \param theShape Shape to be exploded.
1110 * \param theShapeType Type of sub-shapes to be retrieved.
1111 * \return List of IDs of sub-shapes.
1113 ListIDs = ShapesOp.SubShapeAllIDs(aShape,aType,1)
1114 if ShapesOp.IsDone() == 0:
1115 print "SubShapeAllSortedIDs : ", ShapesOp.GetErrorCode()
1118 def SubShape(aShape, aType, ListOfInd):
1120 * Obtain a compound of sub-shapes of <aShape>,
1121 * selected by they indices in list of all sub-shapes of type <aType>.
1122 * Each index is in range [1, Nb_Sub-Shapes_Of_Given_Type]
1124 * Example: see GEOM_TestAll.py
1127 AllShapeList = SubShapeAll(aShape, aType)
1128 for ind in ListOfInd:
1129 ListOfIDs.append(GetSubShapeID(aShape, AllShapeList[ind - 1]))
1130 anObj = GetSubShape(aShape, ListOfIDs)
1133 def SubShapeSorted(aShape, aType, ListOfInd):
1135 * Obtain a compound of sub-shapes of <aShape>,
1136 * selected by they indices in sorted list of all sub-shapes of type <aType>.
1137 * Each index is in range [1, Nb_Sub-Shapes_Of_Given_Type]
1139 * Example: see GEOM_TestAll.py
1142 AllShapeList = SubShapeAllSorted(aShape, aType)
1143 for ind in ListOfInd:
1144 ListOfIDs.append(GetSubShapeID(aShape, AllShapeList[ind - 1]))
1145 anObj = GetSubShape(aShape, ListOfIDs)
1148 # -----------------------------------------------------------------------------
1149 # Healing operations
1150 # -----------------------------------------------------------------------------
1152 def ProcessShape(theShape, theOperators, theParameters, theValues):
1154 * Apply a sequence of Shape Healing operators to the given object.
1155 * \param theShape Shape to be processed.
1156 * \param theOperators List of names of operators ("FixShape", "SplitClosedFaces", etc.).
1157 * \param theParameters List of names of parameters
1158 * ("FixShape.Tolerance3d", "SplitClosedFaces.NbSplitPoints", etc.).
1159 * \param theValues List of values of parameters, in the same order
1160 * as parameters are listed in \a theParameters list.
1161 * \return New GEOM_Object, containing processed shape.
1163 * Example: see GEOM_TestHealing.py
1165 anObj = HealOp.ProcessShape(theShape, theOperators, theParameters, theValues)
1166 if HealOp.IsDone() == 0:
1167 print "ProcessShape : ", HealOp.GetErrorCode()
1170 def SuppressFaces(theObject, theFaces):
1172 * Remove faces from the given object (shape).
1173 * \param theObject Shape to be processed.
1174 * \param theFaces Indices of faces to be removed, if EMPTY then the method
1175 * removes ALL faces of the given object.
1176 * \return New GEOM_Object, containing processed shape.
1178 * Example: see GEOM_TestHealing.py
1180 anObj = HealOp.SuppressFaces(theObject, theFaces)
1181 if HealOp.IsDone() == 0:
1182 print "SuppressFaces : ", HealOp.GetErrorCode()
1185 def MakeSewing(ListShape, theTolerance):
1187 * Sewing of some shapes into single shape.
1189 * Example: see GEOM_TestHealing.py
1191 comp = MakeCompound(ListShape)
1192 anObj = Sew(comp, theTolerance)
1195 def Sew(theObject, theTolerance):
1197 * Sewing of the given object.
1198 * \param theObject Shape to be processed.
1199 * \param theTolerance Required tolerance value.
1200 * \return New GEOM_Object, containing processed shape.
1202 * Example: see MakeSewing() above
1204 anObj = HealOp.Sew(theObject, theTolerance)
1205 if HealOp.IsDone() == 0:
1206 print "Sew : ", HealOp.GetErrorCode()
1209 def SuppressInternalWires(theObject, theWires):
1211 * Remove internal wires and edges from the given object (face).
1212 * \param theObject Shape to be processed.
1213 * \param theWires Indices of wires to be removed, if EMPTY then the method
1214 * removes ALL internal wires of the given object.
1215 * \return New GEOM_Object, containing processed shape.
1217 * Example: see GEOM_TestHealing.py
1219 anObj = HealOp.RemoveIntWires(theObject, theWires)
1220 if HealOp.IsDone() == 0:
1221 print "SuppressInternalWires : ", HealOp.GetErrorCode()
1224 def SuppressHoles(theObject, theWires):
1226 * Remove internal closed contours (holes) from the given object.
1227 * \param theObject Shape to be processed.
1228 * \param theWires Indices of wires to be removed, if EMPTY then the method
1229 * removes ALL internal holes of the given object
1230 * \return New GEOM_Object, containing processed shape.
1232 * Example: see GEOM_TestHealing.py
1234 anObj = HealOp.FillHoles(theObject, theWires)
1235 if HealOp.IsDone() == 0:
1236 print "SuppressHoles : ", HealOp.GetErrorCode()
1239 def CloseContour(theObject, theWires, isCommonVertex):
1241 * Close an open wire.
1242 * \param theObject Shape to be processed.
1243 * \param theWires Indexes of edge(s) and wire(s) to be closed within <VAR>theObject</VAR>'s shape,
1244 * if -1, then theObject itself is a wire.
1245 * \param isCommonVertex If TRUE : closure by creation of a common vertex,
1246 * If FALS : closure by creation of an edge between ends.
1247 * \return New GEOM_Object, containing processed shape.
1249 * Example: see GEOM_TestHealing.py
1251 anObj = HealOp.CloseContour(theObject, theWires, isCommonVertex)
1252 if HealOp.IsDone() == 0:
1253 print "CloseContour : ", HealOp.GetErrorCode()
1256 def DivideEdge(theObject, theEdgeIndex, theValue, isByParameter):
1258 * Addition of a point to a given edge object.
1259 * \param theObject Shape to be processed.
1260 * \param theEdgeIndex Index of edge to be divided within theObject's shape,
1261 * if -1, then theObject itself is the edge.
1262 * \param theValue Value of parameter on edge or length parameter,
1263 * depending on \a isByParameter.
1264 * \param isByParameter If TRUE : \a theValue is treated as a curve parameter [0..1],
1265 * if FALSE : \a theValue is treated as a length parameter [0..1]
1266 * \return New GEOM_Object, containing processed shape.
1268 * Example: see GEOM_TestHealing.py
1270 anObj = HealOp.DivideEdge(theObject, theEdgeIndex, theValue, isByParameter)
1271 if HealOp.IsDone() == 0:
1272 print "DivideEdge : ", HealOp.GetErrorCode()
1275 def GetFreeBoundary(theObject):
1277 * Get a list of wires (wrapped in GEOM_Object-s),
1278 * that constitute a free boundary of the given shape.
1279 * \param theObject Shape to get free boundary of.
1280 * \return [status, theClosedWires, theOpenWires]
1281 * status: FALSE, if an error(s) occured during the method execution.
1282 * theClosedWires: Closed wires on the free boundary of the given shape.
1283 * theOpenWires: Open wires on the free boundary of the given shape.
1285 * Example: see GEOM_TestHealing.py
1287 anObj = HealOp.GetFreeBoundary(theObject)
1288 if HealOp.IsDone() == 0:
1289 print "GetFreeBoundaries : ", HealOp.GetErrorCode()
1292 # -----------------------------------------------------------------------------
1293 # Create advanced objects
1294 # -----------------------------------------------------------------------------
1296 def MakeCopy(theOriginal):
1298 * Create a copy of the given object
1300 * Example: see GEOM_TestAll.py
1302 anObj = InsertOp.MakeCopy(theOriginal)
1303 if InsertOp.IsDone() == 0:
1304 print "MakeCopy : ", InsertOp.GetErrorCode()
1307 def MakeFilling(theShape, theMinDeg, theMaxDeg, theTol2D, theTol3D, theNbIter):
1309 * Create a filling from the given compound of contours.
1310 * \param theShape the compound of contours
1311 * \param theMinDeg a minimal degree
1312 * \param theMaxDeg a maximal degree
1313 * \param theTol2D a 2d tolerance
1314 * \param theTol3D a 3d tolerance
1315 * \param theNbIter a number of iteration
1316 * \return New GEOM_Object, containing the created filling surface.
1318 * Example: see GEOM_TestAll.py
1320 anObj = PrimOp.MakeFilling(theShape, theMinDeg, theMaxDeg, theTol2D, theTol3D, theNbIter)
1321 if PrimOp.IsDone() == 0:
1322 print "MakeFilling : ", PrimOp.GetErrorCode()
1325 def MakeGlueFaces(theShape, theTolerance):
1327 * Replace coincident faces in theShape by one face.
1328 * \param theShape Initial shape.
1329 * \param theTolerance Maximum distance between faces, which can be considered as coincident.
1330 * \return New GEOM_Object, containing a copy of theShape without coincident faces.
1332 * Example: see GEOM_Spanner.py
1334 anObj = ShapesOp.MakeGlueFaces(theShape, theTolerance)
1335 if ShapesOp.IsDone() == 0:
1336 print "MakeGlueFaces : ", ShapesOp.GetErrorCode()
1339 # -----------------------------------------------------------------------------
1340 # Boolean (Common, Cut, Fuse, Section)
1341 # -----------------------------------------------------------------------------
1343 def MakeBoolean(theShape1, theShape2, theOperation):
1345 * Perform one of boolean operations on two given shapes.
1346 * \param theShape1 First argument for boolean operation.
1347 * \param theShape2 Second argument for boolean operation.
1348 * \param theOperation Indicates the operation to be done:
1349 * 1 - Common, 2 - Cut, 3 - Fuse, 4 - Section.
1350 * \return New GEOM_Object, containing the result shape.
1352 * Example: see GEOM_TestAll.py
1354 anObj = BoolOp.MakeBoolean(theShape1, theShape2, theOperation)
1355 if BoolOp.IsDone() == 0:
1356 print "MakeBoolean : ", BoolOp.GetErrorCode()
1359 def MakeCommon(s1, s2):
1361 * Shortcut to MakeBoolean(s1, s2, 1)
1363 * Example: see GEOM_TestOthers.py
1365 return MakeBoolean(s1, s2, 1)
1367 def MakeCut(s1, s2):
1369 * Shortcut to MakeBoolean(s1, s2, 2)
1371 * Example: see GEOM_TestOthers.py
1373 return MakeBoolean(s1, s2, 2)
1375 def MakeFuse(s1, s2):
1377 * Shortcut to MakeBoolean(s1, s2, 3)
1379 * Example: see GEOM_TestOthers.py
1381 return MakeBoolean(s1, s2, 3)
1383 def MakeSection(s1, s2):
1385 * Shortcut to MakeBoolean(s1, s2, 4)
1387 * Example: see GEOM_TestOthers.py
1389 return MakeBoolean(s1, s2, 4)
1391 def MakePartition(ListShapes, ListTools=[], ListKeepInside=[], ListRemoveInside=[],
1392 Limit=ShapeType["SHAPE"], RemoveWebs=0, ListMaterials=[]):
1394 * Perform partition operation.
1395 * \param ListShapes Shapes to be intersected.
1396 * \param ListTools Shapes to intersect theShapes.
1397 * \param ListKeepInside Shapes, outside which the results will be deleted.
1398 * Each shape from theKeepInside must belong to theShapes also.
1399 * \param ListRemoveInside Shapes, inside which the results will be deleted.
1400 * Each shape from theRemoveInside must belong to theShapes also.
1401 * \param Limit Type of resulting shapes (corresponding to TopAbs_ShapeEnum).
1402 * \param RemoveWebs If TRUE, perform Glue 3D algorithm.
1403 * \param ListMaterials Material indices for each shape. Make sence, only if theRemoveWebs is TRUE.
1404 * \return New GEOM_Object, containing the result shapes.
1406 * Example: see GEOM_TestAll.py
1408 anObj = BoolOp.MakePartition(ListShapes, ListTools,
1409 ListKeepInside, ListRemoveInside,
1410 Limit, RemoveWebs, ListMaterials);
1411 if BoolOp.IsDone() == 0:
1412 print "MakePartition : ", BoolOp.GetErrorCode()
1415 def Partition(ListShapes, ListTools=[], ListKeepInside=[], ListRemoveInside=[],
1416 Limit=ShapeType["SHAPE"], RemoveWebs=0, ListMaterials=[]):
1418 * Shortcut to MakePartition()
1420 * Example: see GEOM_TestOthers.py
1422 anObj = MakePartition(ListShapes, ListTools,
1423 ListKeepInside, ListRemoveInside,
1424 Limit, RemoveWebs, ListMaterials);
1427 def MakeHalfPartition(theShape, thePlane):
1429 * Perform partition of the Shape with the Plane
1430 * \param theShape Shape to be intersected.
1431 * \param thePlane Tool shape, to intersect theShape.
1432 * \return New GEOM_Object, containing the result shape.
1434 * Example: see GEOM_TestAll.py
1436 anObj = BoolOp.MakeHalfPartition(theShape, thePlane)
1437 if BoolOp.IsDone() == 0:
1438 print "MakeHalfPartition : ", BoolOp.GetErrorCode()
1441 # -----------------------------------------------------------------------------
1443 # -----------------------------------------------------------------------------
1445 def MakeTranslationTwoPoints(theObject, thePoint1, thePoint2):
1447 * Translate the given object along the vector, specified
1448 * by its end points, creating its copy before the translation.
1449 * \param theObject The object to be translated.
1450 * \param thePoint1 Start point of translation vector.
1451 * \param thePoint2 End point of translation vector.
1452 * \return New GEOM_Object, containing the translated object.
1454 * Example: see GEOM_TestAll.py
1456 anObj = TrsfOp.TranslateTwoPointsCopy(theObject, thePoint1, thePoint2)
1457 if TrsfOp.IsDone() == 0:
1458 print "TranslateTwoPointsCopy : ", TrsfOp.GetErrorCode()
1461 def MakeTranslation(theObject, theDX, theDY, theDZ):
1463 * Translate the given object along the vector, specified
1464 * by its components, creating its copy before the translation.
1465 * \param theObject The object to be translated.
1466 * \param theDX,theDY,theDZ Components of translation vector.
1467 * \return New GEOM_Object, containing the translated object.
1469 * Example: see GEOM_TestAll.py
1471 anObj = TrsfOp.TranslateDXDYDZCopy(theObject, theDX, theDY, theDZ)
1472 if TrsfOp.IsDone() == 0:
1473 print "TranslateDXDYDZCopy : ", TrsfOp.GetErrorCode()
1476 def MakeTranslationVector(theObject, theVector):
1478 * Translate the given object along the given vector,
1479 * creating its copy before the translation.
1480 * \param theObject The object to be translated.
1481 * \param theVector The translation vector.
1482 * \return New GEOM_Object, containing the translated object.
1484 * Example: see GEOM_TestAll.py
1486 anObj = TrsfOp.TranslateVectorCopy(theObject, theVector)
1487 if TrsfOp.IsDone() == 0:
1488 print "TranslateVectorCopy : ", TrsfOp.GetErrorCode()
1491 def MakeRotation(theObject, theAxis, theAngle):
1493 * Rotate the given object around the given axis
1494 * on the given angle, creating its copy before the rotatation.
1495 * \param theObject The object to be rotated.
1496 * \param theAxis Rotation axis.
1497 * \param theAngle Rotation angle in radians.
1498 * \return New GEOM_Object, containing the rotated object.
1500 * Example: see GEOM_TestAll.py
1502 anObj = TrsfOp.RotateCopy(theObject, theAxis, theAngle)
1503 if TrsfOp.IsDone() == 0:
1504 print "RotateCopy : ", TrsfOp.GetErrorCode()
1507 def MakeScaleTransform(theObject, thePoint, theFactor):
1509 * Scale the given object by the factor, creating its copy before the scaling.
1510 * \param theObject The object to be scaled.
1511 * \param thePoint Center point for scaling.
1512 * \param theFactor Scaling factor value.
1513 * \return New GEOM_Object, containing the scaled shape.
1515 * Example: see GEOM_TestAll.py
1517 anObj = TrsfOp.ScaleShapeCopy(theObject, thePoint, theFactor)
1518 if TrsfOp.IsDone() == 0:
1519 print "ScaleShapeCopy : ", TrsfOp.GetErrorCode()
1522 def MakeMirrorByPlane(theObject, thePlane):
1524 * Create an object, symmetrical
1525 * to the given one relatively the given plane.
1526 * \param theObject The object to be mirrored.
1527 * \param thePlane Plane of symmetry.
1528 * \return New GEOM_Object, containing the mirrored shape.
1530 * Example: see GEOM_TestAll.py
1532 anObj = TrsfOp.MirrorPlaneCopy(theObject, thePlane)
1533 if TrsfOp.IsDone() == 0:
1534 print "MirrorPlaneCopy : ", TrsfOp.GetErrorCode()
1537 def MakeMirrorByAxis(theObject, theAxis):
1539 * Create an object, symmetrical
1540 * to the given one relatively the given axis.
1541 * \param theObject The object to be mirrored.
1542 * \param theAxis Axis of symmetry.
1543 * \return New GEOM_Object, containing the mirrored shape.
1545 * Example: see GEOM_TestAll.py
1547 anObj = TrsfOp.MirrorAxisCopy(theObject, theAxis)
1548 if TrsfOp.IsDone() == 0:
1549 print "MirrorAxisCopy : ", TrsfOp.GetErrorCode()
1552 def MakeMirrorByPoint(theObject, thePoint):
1554 * Create an object, symmetrical
1555 * to the given one relatively the given point.
1556 * \param theObject The object to be mirrored.
1557 * \param thePoint Point of symmetry.
1558 * \return New GEOM_Object, containing the mirrored shape.
1560 * Example: see GEOM_TestAll.py
1562 anObj = TrsfOp.MirrorPointCopy(theObject, thePoint)
1563 if TrsfOp.IsDone() == 0:
1564 print "MirrorPointCopy : ", TrsfOp.GetErrorCode()
1567 def MakePosition(theObject, theStartLCS, theEndLCS):
1569 * Modify the Location of the given object by LCS
1570 * creating its copy before the setting
1572 * Example: see GEOM_TestAll.py
1574 anObj = TrsfOp.PositionShapeCopy(theObject, theStartLCS, theEndLCS)
1575 if TrsfOp.IsDone() == 0:
1576 print "PositionShapeCopy : ", TrsfOp.GetErrorCode()
1579 def MakeOffset(theObject, theOffset):
1581 * Create new object as offset of the given one.
1582 * \param theObject The base object for the offset.
1583 * \param theOffset Offset value.
1584 * \return New GEOM_Object, containing the offset object.
1586 * Example: see GEOM_TestAll.py
1588 anObj = TrsfOp.OffsetShapeCopy(theObject, theOffset)
1589 if TrsfOp.IsDone() == 0:
1590 print "OffsetShapeCopy : ", TrsfOp.GetErrorCode()
1593 # -----------------------------------------------------------------------------
1595 # -----------------------------------------------------------------------------
1597 def MakeMultiTranslation1D(theObject, theVector, theStep, theNbTimes):
1599 * Translate the given object along the given vector a given number times
1600 * \param theObject The object to be translated.
1601 * \param theVector Direction of the translation.
1602 * \param theStep Distance to translate on.
1603 * \param theNbTimes Quantity of translations to be done.
1604 * \return New GEOM_Object, containing compound of all
1605 * the shapes, obtained after each translation.
1607 * Example: see GEOM_TestAll.py
1609 anObj = TrsfOp.MultiTranslate1D(theObject, theVector, theStep, theNbTimes)
1610 if TrsfOp.IsDone() == 0:
1611 print "MultiTranslate1D : ", TrsfOp.GetErrorCode()
1614 def MakeMultiTranslation2D(theObject, theVector1, theStep1, theNbTimes1,
1615 theVector2, theStep2, theNbTimes2):
1617 * Conseqently apply two specified translations to theObject specified number of times.
1618 * \param theObject The object to be translated.
1619 * \param theVector1 Direction of the first translation.
1620 * \param theStep1 Step of the first translation.
1621 * \param theNbTimes1 Quantity of translations to be done along theVector1.
1622 * \param theVector2 Direction of the second translation.
1623 * \param theStep2 Step of the second translation.
1624 * \param theNbTimes2 Quantity of translations to be done along theVector2.
1625 * \return New GEOM_Object, containing compound of all
1626 * the shapes, obtained after each translation.
1628 * Example: see GEOM_TestAll.py
1630 anObj = TrsfOp.MultiTranslate2D(theObject, theVector1, theStep1, theNbTimes1,
1631 theVector2, theStep2, theNbTimes2)
1632 if TrsfOp.IsDone() == 0:
1633 print "MultiTranslate2D : ", TrsfOp.GetErrorCode()
1636 def MultiRotate1D(theObject, theAxis, theNbTimes):
1638 * Rotate the given object around the given axis a given number times.
1639 * Rotation angle will be 2*PI/theNbTimes.
1640 * \param theObject The object to be rotated.
1641 * \param theAxis The rotation axis.
1642 * \param theNbTimes Quantity of rotations to be done.
1643 * \return New GEOM_Object, containing compound of all the
1644 * shapes, obtained after each rotation.
1646 * Example: see GEOM_TestAll.py
1648 anObj = TrsfOp.MultiRotate1D(theObject, theAxis, theNbTimes)
1649 if TrsfOp.IsDone() == 0:
1650 print "MultiRotate1D : ", TrsfOp.GetErrorCode()
1653 def MultiRotate2D(theObject, theAxis, theAngle, theNbTimes1, theStep, theNbTimes2):
1655 * Rotate the given object around the
1656 * given axis on the given angle a given number
1657 * times and multi-translate each rotation result.
1658 * Translation direction passes through center of gravity
1659 * of rotated shape and its projection on the rotation axis.
1660 * \param theObject The object to be rotated.
1661 * \param theAxis Rotation axis.
1662 * \param theAngle Rotation angle in graduces.
1663 * \param theNbTimes1 Quantity of rotations to be done.
1664 * \param theStep Translation distance.
1665 * \param theNbTimes2 Quantity of translations to be done.
1666 * \return New GEOM_Object, containing compound of all the
1667 * shapes, obtained after each transformation.
1669 * Example: see GEOM_TestAll.py
1671 anObj = TrsfOp.MultiRotate2D(theObject, theAxis, theAngle, theNbTimes1, theStep, theNbTimes2)
1672 if TrsfOp.IsDone() == 0:
1673 print "MultiRotate2D : ", TrsfOp.GetErrorCode()
1676 def MakeMultiRotation1D(aShape,aDir,aPoint,aNbTimes):
1678 * The same, as MultiRotate1D(), but axis is given by direction and point
1680 * Example: see GEOM_TestOthers.py
1682 aVec = MakeLine(aPoint,aDir)
1683 anObj = MultiRotate1D(aShape,aVec,aNbTimes)
1686 def MakeMultiRotation2D(aShape,aDir,aPoint,anAngle,nbtimes1,aStep,nbtimes2):
1688 * The same, as MultiRotate2D(), but axis is given by direction and point
1690 * Example: see GEOM_TestOthers.py
1692 aVec = MakeLine(aPoint,aDir)
1693 anObj = MultiRotate2D(aShape,aVec,anAngle,nbtimes1,aStep,nbtimes2)
1696 # -----------------------------------------------------------------------------
1698 # -----------------------------------------------------------------------------
1700 def MakeFilletAll(theShape, theR):
1702 * Perform a fillet on all edges of the given shape.
1703 * \param theShape Shape, to perform fillet on.
1704 * \param theR Fillet radius.
1705 * \return New GEOM_Object, containing the result shape.
1707 * Example: see GEOM_TestOthers.py
1709 anObj = LocalOp.MakeFilletAll(theShape, theR)
1710 if LocalOp.IsDone() == 0:
1711 print "MakeFilletAll : ", LocalOp.GetErrorCode()
1714 def MakeFillet(theShape, theR, theShapeType, theListShapes):
1716 * Perform a fillet on the specified edges/faces of the given shape
1717 * \param theShape Shape, to perform fillet on.
1718 * \param theR Fillet radius.
1719 * \param theShapeType Type of shapes in <theListShapes>.
1720 * \param theListShapes Global indices of edges/faces to perform fillet on.
1721 * \note Global index of sub-shape can be obtained, using method geompy.GetSubShapeID().
1722 * \return New GEOM_Object, containing the result shape.
1724 * Example: see GEOM_TestAll.py
1727 if theShapeType == ShapeType["EDGE"]:
1728 anObj = LocalOp.MakeFilletEdges(theShape, theR, theListShapes)
1730 anObj = LocalOp.MakeFilletFaces(theShape, theR, theListShapes)
1731 if LocalOp.IsDone() == 0:
1732 print "MakeFillet : ", LocalOp.GetErrorCode()
1735 def MakeChamferAll(theShape, theD):
1737 * Perform a symmetric chamfer on all edges of the given shape.
1738 * \param theShape Shape, to perform chamfer on.
1739 * \param theD Chamfer size along each face.
1740 * \return New GEOM_Object, containing the result shape.
1742 * Example: see GEOM_TestOthers.py
1744 anObj = LocalOp.MakeChamferAll(theShape, theD)
1745 if LocalOp.IsDone() == 0:
1746 print "MakeChamferAll : ", LocalOp.GetErrorCode()
1749 def MakeChamferEdge(theShape, theD1, theD2, theFace1, theFace2):
1751 * Perform a chamfer on edges, common to the specified faces,
1752 * with distance D1 on the Face1
1753 * \param theShape Shape, to perform chamfer on.
1754 * \param theD1 Chamfer size along \a theFace1.
1755 * \param theD2 Chamfer size along \a theFace2.
1756 * \param theFace1,theFace2 Global indices of two faces of \a theShape.
1757 * \note Global index of sub-shape can be obtained, using method geompy.GetSubShapeID().
1758 * \return New GEOM_Object, containing the result shape.
1760 * Example: see GEOM_TestAll.py
1762 anObj = LocalOp.MakeChamferEdge(theShape, theD1, theD2, theFace1, theFace2)
1763 if LocalOp.IsDone() == 0:
1764 print "MakeChamferEdge : ", LocalOp.GetErrorCode()
1767 def MakeChamferFaces(theShape, theD1, theD2, theFaces):
1769 * Perform a chamfer on all edges of the specified faces,
1770 * with distance D1 on the first specified face (if several for one edge)
1771 * \param theShape Shape, to perform chamfer on.
1772 * \param theD1 Chamfer size along face from \a theFaces. If both faces,
1773 * connected to the edge, are in \a theFaces, \a theD1
1774 * will be get along face, which is nearer to \a theFaces beginning.
1775 * \param theD2 Chamfer size along another of two faces, connected to the edge.
1776 * \param theFaces Sequence of global indices of faces of \a theShape.
1777 * \note Global index of sub-shape can be obtained, using method geompy.GetSubShapeID().
1778 * \return New GEOM_Object, containing the result shape.
1780 * Example: see GEOM_TestAll.py
1782 anObj = LocalOp.MakeChamferFaces(theShape, theD1, theD2, theFaces)
1783 if LocalOp.IsDone() == 0:
1784 print "MakeChamferFaces : ", LocalOp.GetErrorCode()
1787 def MakeChamfer(aShape,d1,d2,aShapeType,ListShape):
1789 * Shortcut to MakeChamferEdge() and MakeChamferFaces()
1791 * Example: see GEOM_TestOthers.py
1794 if aShapeType == ShapeType["EDGE"]:
1795 anObj = MakeChamferEdge(aShape,d1,d2,ListShape[0],ListShape[1])
1797 anObj = MakeChamferFaces(aShape,d1,d2,ListShape)
1800 def Archimede(theShape, theWeight, theWaterDensity, theMeshDeflection):
1802 * Perform an Archimde operation on the given shape with given parameters.
1803 * The object presenting the resulting face is returned
1804 * \param theShape Shape to be put in water.
1805 * \param theWeight Weight og the shape.
1806 * \param theWaterDensity Density of the water.
1807 * \param theMeshDeflection Deflection of the mesh, using to compute the section.
1808 * \return New GEOM_Object, containing a section of \a theShape
1809 * by a plane, corresponding to water level.
1811 * Example: see GEOM_TestAll.py
1813 anObj = LocalOp.MakeArchimede(theShape, theWeight, theWaterDensity, theMeshDeflection)
1814 if LocalOp.IsDone() == 0:
1815 print "MakeArchimede : ", LocalOp.GetErrorCode()
1818 # -----------------------------------------------------------------------------
1819 # Information objects
1820 # -----------------------------------------------------------------------------
1822 def PointCoordinates(Point):
1824 * Get point coordinates
1827 * Example: see GEOM_TestMeasures.py
1829 aTuple = MeasuOp.PointCoordinates(Point)
1830 if MeasuOp.IsDone() == 0:
1831 print "PointCoordinates : ", MeasuOp.GetErrorCode()
1834 def BasicProperties(theShape):
1836 * Get summarized length of all wires,
1837 * area of surface and volume of the given shape.
1838 * \param theShape Shape to define properties of.
1839 * \return [theLength, theSurfArea, theVolume]
1840 * theLength: Summarized length of all wires of the given shape.
1841 * theSurfArea: Area of surface of the given shape.
1842 * theVolume: Volume of the given shape.
1844 * Example: see GEOM_TestMeasures.py
1846 aTuple = MeasuOp.GetBasicProperties(theShape)
1847 if MeasuOp.IsDone() == 0:
1848 print "BasicProperties : ", MeasuOp.GetErrorCode()
1851 def BoundingBox(theShape):
1853 * Get parameters of bounding box of the given shape
1854 * \param theShape Shape to obtain bounding box of.
1855 * \return [Xmin,Xmax, Ymin,Ymax, Zmin,Zmax]
1856 * Xmin,Xmax: Limits of shape along OX axis.
1857 * Ymin,Ymax: Limits of shape along OY axis.
1858 * Zmin,Zmax: Limits of shape along OZ axis.
1860 * Example: see GEOM_TestMeasures.py
1862 aTuple = MeasuOp.GetBoundingBox(theShape)
1863 if MeasuOp.IsDone() == 0:
1864 print "BoundingBox : ", MeasuOp.GetErrorCode()
1867 def Inertia(theShape):
1869 * Get inertia matrix and moments of inertia of theShape.
1870 * \param theShape Shape to calculate inertia of.
1871 * \return [I11,I12,I13, I21,I22,I23, I31,I32,I33, Ix,Iy,Iz]
1872 * I(1-3)(1-3): Components of the inertia matrix of the given shape.
1873 * Ix,Iy,Iz: Moments of inertia of the given shape.
1875 * Example: see GEOM_TestMeasures.py
1877 aTuple = MeasuOp.GetInertia(theShape)
1878 if MeasuOp.IsDone() == 0:
1879 print "Inertia : ", MeasuOp.GetErrorCode()
1882 def MinDistance(theShape1, theShape2):
1884 * Get minimal distance between the given shapes.
1885 * \param theShape1,theShape2 Shapes to find minimal distance between.
1886 * \return Value of the minimal distance between the given shapes.
1888 * Example: see GEOM_TestMeasures.py
1890 aTuple = MeasuOp.GetMinDistance(theShape1, theShape2)
1891 if MeasuOp.IsDone() == 0:
1892 print "MinDistance : ", MeasuOp.GetErrorCode()
1895 def Tolerance(theShape):
1897 * Get min and max tolerances of sub-shapes of theShape
1898 * \param theShape Shape, to get tolerances of.
1899 * \return [FaceMin,FaceMax, EdgeMin,EdgeMax, VertMin,VertMax]
1900 * FaceMin,FaceMax: Min and max tolerances of the faces.
1901 * EdgeMin,EdgeMax: Min and max tolerances of the edges.
1902 * VertMin,VertMax: Min and max tolerances of the vertices.
1904 * Example: see GEOM_TestMeasures.py
1906 aTuple = MeasuOp.GetTolerance(theShape)
1907 if MeasuOp.IsDone() == 0:
1908 print "Tolerance : ", MeasuOp.GetErrorCode()
1911 def WhatIs(theShape):
1913 * Obtain description of the given shape (number of sub-shapes of each type)
1914 * \param theShape Shape to be described.
1915 * \return Description of the given shape.
1917 * Example: see GEOM_TestMeasures.py
1919 aDescr = MeasuOp.WhatIs(theShape)
1920 if MeasuOp.IsDone() == 0:
1921 print "WhatIs : ", MeasuOp.GetErrorCode()
1924 def MakeCDG(theShape):
1926 * Get a point, situated at the centre of mass of theShape.
1927 * \param theShape Shape to define centre of mass of.
1928 * \return New GEOM_Object, containing the created point.
1930 * Example: see GEOM_TestMeasures.py
1932 anObj = MeasuOp.GetCentreOfMass(theShape)
1933 if MeasuOp.IsDone() == 0:
1934 print "GetCentreOfMass : ", MeasuOp.GetErrorCode()
1937 def CheckShape(theShape):
1939 * Check a topology of the given shape.
1940 * \param theShape Shape to check validity of.
1941 * \return TRUE, if the shape "seems to be valid" from the topological point of view.
1942 * If theShape is invalid, prints a description of problem.
1944 * Example: see GEOM_TestMeasures.py
1946 (IsValid, Status) = MeasuOp.CheckShape(theShape)
1947 if MeasuOp.IsDone() == 0:
1948 print "CheckShape : ", MeasuOp.GetErrorCode()
1954 # -----------------------------------------------------------------------------
1955 # Import/Export objects
1956 # -----------------------------------------------------------------------------
1958 def Import(theFileName, theFormatName):
1960 * Import a shape from the BREP or IGES or STEP file
1961 * (depends on given format) with given name.
1962 * \param theFileName The file, containing the shape.
1963 * \param theFormatName Specify format for the file reading.
1964 * Available formats can be obtained with InsertOp.ImportTranslators() method.
1965 * \return New GEOM_Object, containing the imported shape.
1967 * Example: see GEOM_TestOthers.py
1969 anObj = InsertOp.Import(theFileName, theFormatName)
1970 if InsertOp.IsDone() == 0:
1971 print "Import : ", InsertOp.GetErrorCode()
1974 def ImportBREP(theFileName):
1976 * Shortcut to Import() for BREP format
1978 * Example: see GEOM_TestOthers.py
1980 return Import(theFileName, "BREP")
1982 def ImportIGES(theFileName):
1984 * Shortcut to Import() for IGES format
1986 * Example: see GEOM_TestOthers.py
1988 return Import(theFileName, "IGES")
1990 def ImportSTEP(theFileName):
1992 * Shortcut to Import() for STEP format
1994 * Example: see GEOM_TestOthers.py
1996 return Import(theFileName, "STEP")
1998 def Export(theObject, theFileName, theFormatName):
2000 * Export the given shape into a file with given name.
2001 * \param theObject Shape to be stored in the file.
2002 * \param theFileName Name of the file to store the given shape in.
2003 * \param theFormatName Specify format for the shape storage.
2004 * Available formats can be obtained with InsertOp.ImportTranslators() method.
2006 * Example: see GEOM_TestOthers.py
2008 InsertOp.Export(theObject, theFileName, theFormatName)
2009 if InsertOp.IsDone() == 0:
2010 print "Export : ", InsertOp.GetErrorCode()
2012 def ExportBREP(theObject, theFileName):
2014 * Shortcut to Export() for BREP format
2016 * Example: see GEOM_TestOthers.py
2018 return Export(theObject, theFileName, "BREP")
2020 def ExportIGES(theObject, theFileName):
2022 * Shortcut to Export() for IGES format
2024 * Example: see GEOM_TestOthers.py
2026 return Export(theObject, theFileName, "IGES")
2028 def ExportSTEP(theObject, theFileName):
2030 * Shortcut to Export() for STEP format
2032 * Example: see GEOM_TestOthers.py
2034 return Export(theObject, theFileName, "STEP")
2036 # -----------------------------------------------------------------------------
2038 # -----------------------------------------------------------------------------
2040 def MakeQuad(E1, E2, E3, E4):
2042 * Create a quadrangle face from four edges. Order of Edges is not
2043 * important. It is not necessary that edges share the same vertex.
2044 * \param E1,E2,E3,E4 Edges for the face bound.
2045 * \return New GEOM_Object, containing the created face.
2047 * Example: see GEOM_Spanner.py
2049 anObj = BlocksOp.MakeQuad(E1, E2, E3, E4)
2050 if BlocksOp.IsDone() == 0:
2051 print "MakeQuad : ", BlocksOp.GetErrorCode()
2054 def MakeQuad2Edges(E1, E2):
2056 * Create a quadrangle face on two edges.
2057 * The missing edges will be built by creating the shortest ones.
2058 * \param E1,E2 Two opposite edges for the face.
2059 * \return New GEOM_Object, containing the created face.
2061 * Example: see GEOM_Spanner.py
2063 anObj = BlocksOp.MakeQuad2Edges(E1, E2)
2064 if BlocksOp.IsDone() == 0:
2065 print "MakeQuad2Edges : ", BlocksOp.GetErrorCode()
2068 def MakeQuad4Vertices(V1, V2, V3, V4):
2070 * Create a quadrangle face with specified corners.
2071 * The missing edges will be built by creating the shortest ones.
2072 * \param V1,V2,V3,V4 Corner vertices for the face.
2073 * \return New GEOM_Object, containing the created face.
2075 * Example: see GEOM_Spanner.py
2077 anObj = BlocksOp.MakeQuad4Vertices(V1, V2, V3, V4)
2078 if BlocksOp.IsDone() == 0:
2079 print "MakeQuad4Vertices : ", BlocksOp.GetErrorCode()
2082 def MakeHexa(F1, F2, F3, F4, F5, F6):
2084 * Create a hexahedral solid, bounded by the six given faces. Order of
2085 * faces is not important. It is not necessary that Faces share the same edge.
2086 * \param F1,F2,F3,F4,F5,F6 Faces for the hexahedral solid.
2087 * \return New GEOM_Object, containing the created solid.
2089 * Example: see GEOM_Spanner.py
2091 anObj = BlocksOp.MakeHexa(F1, F2, F3, F4, F5, F6)
2092 if BlocksOp.IsDone() == 0:
2093 print "MakeHexa : ", BlocksOp.GetErrorCode()
2096 def MakeHexa2Faces(F1, F2):
2098 * Create a hexahedral solid between two given faces.
2099 * The missing faces will be built by creating the smallest ones.
2100 * \param F1,F2 Two opposite faces for the hexahedral solid.
2101 * \return New GEOM_Object, containing the created solid.
2103 * Example: see GEOM_Spanner.py
2105 anObj = BlocksOp.MakeHexa2Faces(F1, F2)
2106 if BlocksOp.IsDone() == 0:
2107 print "MakeHexa2Faces : ", BlocksOp.GetErrorCode()
2110 def GetPoint(theShape, theX, theY, theZ, theEpsilon):
2112 * Get a vertex, found in the given shape by its coordinates.
2113 * \param theShape Block or a compound of blocks.
2114 * \param theX,theY,theZ Coordinates of the sought vertex.
2115 * \param theEpsilon Maximum allowed distance between the resulting
2116 * vertex and point with the given coordinates.
2117 * \return New GEOM_Object, containing the found vertex.
2119 * Example: see GEOM_TestOthers.py
2121 anObj = BlocksOp.GetPoint(theShape, theX, theY, theZ, theEpsilon)
2122 if BlocksOp.IsDone() == 0:
2123 print "GetPoint : ", BlocksOp.GetErrorCode()
2126 def GetEdge(theShape, thePoint1, thePoint2):
2128 * Get an edge, found in the given shape by two given vertices.
2129 * \param theShape Block or a compound of blocks.
2130 * \param thePoint1,thePoint2 Points, close to the ends of the desired edge.
2131 * \return New GEOM_Object, containing the found edge.
2133 * Example: see GEOM_Spanner.py
2135 anObj = BlocksOp.GetEdge(theShape, thePoint1, thePoint2)
2136 if BlocksOp.IsDone() == 0:
2137 print "GetEdge : ", BlocksOp.GetErrorCode()
2140 def GetEdgeNearPoint(theShape, thePoint):
2142 * Find an edge of the given shape, which has minimal distance to the given point.
2143 * \param theShape Block or a compound of blocks.
2144 * \param thePoint Point, close to the desired edge.
2145 * \return New GEOM_Object, containing the found edge.
2147 * Example: see GEOM_TestOthers.py
2149 anObj = BlocksOp.GetEdgeNearPoint(theShape, thePoint)
2150 if BlocksOp.IsDone() == 0:
2151 print "GetEdgeNearPoint : ", BlocksOp.GetErrorCode()
2154 def GetFaceByPoints(theShape, thePoint1, thePoint2, thePoint3, thePoint4):
2156 * Returns a face, found in the given shape by four given corner vertices.
2157 * \param theShape Block or a compound of blocks.
2158 * \param thePoint1-thePoint4 Points, close to the corners of the desired face.
2159 * \return New GEOM_Object, containing the found face.
2161 * Example: see GEOM_Spanner.py
2163 anObj = BlocksOp.GetFaceByPoints(theShape, thePoint1, thePoint2, thePoint3, thePoint4)
2164 if BlocksOp.IsDone() == 0:
2165 print "GetFaceByPoints : ", BlocksOp.GetErrorCode()
2168 def GetFaceByEdges(theShape, theEdge1, theEdge2):
2170 * Get a face of block, found in the given shape by two given edges.
2171 * \param theShape Block or a compound of blocks.
2172 * \param theEdge1,theEdge2 Edges, close to the edges of the desired face.
2173 * \return New GEOM_Object, containing the found face.
2175 * Example: see GEOM_Spanner.py
2177 anObj = BlocksOp.GetFaceByEdges(theShape, theEdge1, theEdge2)
2178 if BlocksOp.IsDone() == 0:
2179 print "GetFaceByEdges : ", BlocksOp.GetErrorCode()
2182 def GetOppositeFace(theBlock, theFace):
2184 * Find a face, opposite to the given one in the given block.
2185 * \param theBlock Must be a hexahedral solid.
2186 * \param theFace Face of \a theBlock, opposite to the desired face.
2187 * \return New GEOM_Object, containing the found face.
2189 * Example: see GEOM_Spanner.py
2191 anObj = BlocksOp.GetOppositeFace(theBlock, theFace)
2192 if BlocksOp.IsDone() == 0:
2193 print "GetOppositeFace : ", BlocksOp.GetErrorCode()
2196 def GetFaceNearPoint(theShape, thePoint):
2198 * Find a face of the given shape, which has minimal distance to the given point.
2199 * \param theShape Block or a compound of blocks.
2200 * \param thePoint Point, close to the desired face.
2201 * \return New GEOM_Object, containing the found face.
2203 * Example: see GEOM_Spanner.py
2205 anObj = BlocksOp.GetFaceNearPoint(theShape, thePoint)
2206 if BlocksOp.IsDone() == 0:
2207 print "GetFaceNearPoint : ", BlocksOp.GetErrorCode()
2210 def GetFaceByNormale(theBlock, theVector):
2212 * Find a face of block, whose outside normale has minimal angle with the given vector.
2213 * \param theShape Block or a compound of blocks.
2214 * \param theVector Vector, close to the normale of the desired face.
2215 * \return New GEOM_Object, containing the found face.
2217 * Example: see GEOM_Spanner.py
2219 anObj = BlocksOp.GetFaceByNormale(theBlock, theVector)
2220 if BlocksOp.IsDone() == 0:
2221 print "GetFaceByNormale : ", BlocksOp.GetErrorCode()
2224 def CheckCompoundOfBlocks(theCompound):
2226 * Check, if the compound of blocks is given.
2227 * To be considered as a compound of blocks, the
2228 * given shape must satisfy the following conditions:
2229 * - Each element of the compound should be a Block (6 faces and 12 edges).
2230 * - A connection between two Blocks should be an entire quadrangle face or an entire edge.
2231 * - The compound should be connexe.
2232 * - The glue between two quadrangle faces should be applied.
2233 * \param theCompound The compound to check.
2234 * \return TRUE, if the given shape is a compound of blocks.
2235 * If theCompound is not valid, prints all discovered errors.
2237 * Example: see GEOM_Spanner.py
2239 (IsValid, BCErrors) = BlocksOp.CheckCompoundOfBlocks(theCompound)
2240 if BlocksOp.IsDone() == 0:
2241 print "CheckCompoundOfBlocks : ", BlocksOp.GetErrorCode()
2244 Descr = BlocksOp.PrintBCErrors(theCompound, BCErrors)
2248 def RemoveExtraEdges(theShape):
2250 * Remove all seam and degenerated edges from \a theShape.
2251 * Unite faces and edges, sharing one surface.
2252 * \param theShape The compound or single solid to remove irregular edges from.
2253 * \return Improved shape.
2255 * Example: see GEOM_TestOthers.py
2257 anObj = BlocksOp.RemoveExtraEdges(theShape)
2258 if BlocksOp.IsDone() == 0:
2259 print "RemoveExtraEdges : ", BlocksOp.GetErrorCode()
2262 def CheckAndImprove(theShape):
2264 * Check, if the given shape is a blocks compound.
2265 * Fix all detected errors.
2266 * \note Single block can be also fixed by this method.
2267 * \param theCompound The compound to check and improve.
2268 * \return Improved compound.
2270 * Example: see GEOM_TestOthers.py
2272 anObj = BlocksOp.CheckAndImprove(theShape)
2273 if BlocksOp.IsDone() == 0:
2274 print "CheckAndImprove : ", BlocksOp.GetErrorCode()
2277 def MakeBlockExplode(theCompound, theMinNbFaces, theMaxNbFaces):
2279 * Get all the blocks, contained in the given compound.
2280 * \param theCompound The compound to explode.
2281 * \param theMinNbFaces If solid has lower number of faces, it is not a block.
2282 * \param theMaxNbFaces If solid has higher number of faces, it is not a block.
2283 * \note If theMaxNbFaces = 0, the maximum number of faces is not restricted.
2284 * \return List of GEOM_Objects, containing the retrieved blocks.
2286 * Example: see GEOM_TestOthers.py
2288 aList = BlocksOp.ExplodeCompoundOfBlocks(theCompound, theMinNbFaces, theMaxNbFaces)
2289 if BlocksOp.IsDone() == 0:
2290 print "MakeBlockExplode : ", BlocksOp.GetErrorCode()
2293 def GetBlockNearPoint(theCompound, thePoint):
2295 * Find block, containing the given point inside its volume or on boundary.
2296 * \param theCompound Compound, to find block in.
2297 * \param thePoint Point, close to the desired block. If the point lays on
2298 * boundary between some blocks, we return block with nearest center.
2299 * \return New GEOM_Object, containing the found block.
2301 * Example: see GEOM_Spanner.py
2303 anObj = BlocksOp.GetBlockNearPoint(theCompound, thePoint)
2304 if BlocksOp.IsDone() == 0:
2305 print "GetBlockNearPoint : ", BlocksOp.GetErrorCode()
2308 def GetBlockByParts(theCompound, theParts):
2310 * Find block, containing all the elements, passed as the parts, or maximum quantity of them.
2311 * \param theCompound Compound, to find block in.
2312 * \param theParts List of faces and/or edges and/or vertices to be parts of the found block.
2313 * \return New GEOM_Object, containing the found block.
2315 * Example: see GEOM_TestOthers.py
2317 anObj = BlocksOp.GetBlockByParts(theCompound, theParts)
2318 if BlocksOp.IsDone() == 0:
2319 print "GetBlockByParts : ", BlocksOp.GetErrorCode()
2322 def GetBlocksByParts(theCompound, theParts):
2324 * Return all blocks, containing all the elements, passed as the parts.
2325 * \param theCompound Compound, to find blocks in.
2326 * \param theParts List of faces and/or edges and/or vertices to be parts of the found blocks.
2327 * \return List of GEOM_Objects, containing the found blocks.
2329 * Example: see GEOM_Spanner.py
2331 aList = BlocksOp.GetBlocksByParts(theCompound, theParts)
2332 if BlocksOp.IsDone() == 0:
2333 print "GetBlocksByParts : ", BlocksOp.GetErrorCode()
2336 def MakeMultiTransformation1D(Block, DirFace1, DirFace2, NbTimes):
2338 * Multi-transformate block and glue the result.
2339 * Transformation is defined so, as to superpose direction faces.
2340 * \param Block Hexahedral solid to be multi-transformed.
2341 * \param DirFace1 ID of First direction face.
2342 * \param DirFace2 ID of Second direction face.
2343 * \param NbTimes Quantity of transformations to be done.
2344 * \note Unique ID of sub-shape can be obtained, using method GetSubShapeID().
2345 * \return New GEOM_Object, containing the result shape.
2347 * Example: see GEOM_Spanner.py
2349 anObj = BlocksOp.MakeMultiTransformation1D(Block, DirFace1, DirFace2, NbTimes)
2350 if BlocksOp.IsDone() == 0:
2351 print "MakeMultiTransformation1D : ", BlocksOp.GetErrorCode()
2354 def MakeMultiTransformation2D(Block, DirFace1U, DirFace2U, NbTimesU,
2355 DirFace1V, DirFace2V, NbTimesV):
2357 * Multi-transformate block and glue the result.
2358 * \param Block Hexahedral solid to be multi-transformed.
2359 * \param DirFace1U,DirFace2U IDs of Direction faces for the first transformation.
2360 * \param DirFace1V,DirFace2V IDs of Direction faces for the second transformation.
2361 * \param NbTimesU,NbTimesV Quantity of transformations to be done.
2362 * \return New GEOM_Object, containing the result shape.
2364 * Example: see GEOM_Spanner.py
2366 anObj = BlocksOp.MakeMultiTransformation2D(Block, DirFace1U, DirFace2U, NbTimesU,
2367 DirFace1V, DirFace2V, NbTimesV)
2368 if BlocksOp.IsDone() == 0:
2369 print "MakeMultiTransformation2D : ", BlocksOp.GetErrorCode()
2372 def Propagate(theShape):
2374 * Build all possible propagation groups.
2375 * Propagation group is a set of all edges, opposite to one (main)
2376 * edge of this group directly or through other opposite edges.
2377 * Notion of Opposite Edge make sence only on quadrangle face.
2378 * \param theShape Shape to build propagation groups on.
2379 * \return List of GEOM_Objects, each of them is a propagation group.
2381 * Example: see GEOM_TestOthers.py
2383 listChains = BlocksOp.Propagate(theShape)
2384 if BlocksOp.IsDone() == 0:
2385 print "Propagate : ", BlocksOp.GetErrorCode()
2388 # -----------------------------------------------------------------------------
2390 # -----------------------------------------------------------------------------
2392 def CreateGroup(theMainShape, theShapeType):
2394 * Creates a new group which will store sub shapes of theMainShape
2395 * \param theMainShape is a GEOM object on which the group is selected
2396 * \param theShapeType defines a shape type of the group
2397 * \return a newly created GEOM group
2399 * Example: see GEOM_TestOthers.py
2401 anObj = GroupOp.CreateGroup(theMainShape, theShapeType)
2402 if GroupOp.IsDone() == 0:
2403 print "CreateGroup : ", GroupOp.GetErrorCode()
2406 def AddObject(theGroup, theSubShapeID):
2408 * Adds a sub object with ID theSubShapeId to the group
2409 * \param theGroup is a GEOM group to which the new sub shape is added
2410 * \param theSubShapeID is a sub shape ID in the main object.
2411 * \note Use method GetSubShapeID() to get an unique ID of the sub shape
2413 * Example: see GEOM_TestOthers.py
2415 GroupOp.AddObject(theGroup, theSubShapeID)
2416 if GroupOp.IsDone() == 0:
2417 print "AddObject : ", GroupOp.GetErrorCode()
2419 def RemoveObject(theGroup, theSubShapeID):
2421 * Removes a sub object with ID \a theSubShapeId from the group
2422 * \param theGroup is a GEOM group from which the new sub shape is removed
2423 * \param theSubShapeID is a sub shape ID in the main object.
2424 * \note Use method GetSubShapeID() to get an unique ID of the sub shape
2426 * Example: see GEOM_TestOthers.py
2428 GroupOp.RemoveObject(theGroup, theSubShapeID)
2429 if GroupOp.IsDone() == 0:
2430 print "RemoveObject : ", GroupOp.GetErrorCode()
2432 def UnionList (theGroup, theSubShapes):
2434 * Adds to the group all the given shapes. No errors, if some shapes are alredy included.
2435 * \param theGroup is a GEOM group to which the new sub shapes are added.
2436 * \param theSubShapes is a list of sub shapes to be added.
2438 * Example: see GEOM_TestOthers.py
2440 GroupOp.UnionList(theGroup, theSubShapes)
2441 if GroupOp.IsDone() == 0:
2442 print "UnionList : ", GroupOp.GetErrorCode()
2444 def UnionIDs(theGroup, theSubShapes):
2446 * Works like the above method, but argument
2447 * theSubShapes here is a list of sub-shapes indices
2449 GroupOp.UnionIDs(theGroup, theSubShapes)
2450 if GroupOp.IsDone() == 0:
2451 print "UnionIDs : ", GroupOp.GetErrorCode()
2453 def DifferenceList (theGroup, theSubShapes):
2455 * Removes from the group all the given shapes. No errors, if some shapes are not included.
2456 * \param theGroup is a GEOM group from which the sub-shapes are removed.
2457 * \param theSubShapes is a list of sub-shapes to be removed.
2459 * Example: see GEOM_TestOthers.py
2461 GroupOp.DifferenceList(theGroup, theSubShapes)
2462 if GroupOp.IsDone() == 0:
2463 print "DifferenceList : ", GroupOp.GetErrorCode()
2465 def DifferenceIDs(theGroup, theSubShapes):
2467 * Works like the above method, but argument
2468 * theSubShapes here is a list of sub-shapes indices
2470 GroupOp.DifferenceIDs(theGroup, theSubShapes)
2471 if GroupOp.IsDone() == 0:
2472 print "DifferenceIDs : ", GroupOp.GetErrorCode()
2474 def GetObjectIDs(theGroup):
2476 * Returns a list of sub objects ID stored in the group
2477 * \param theGroup is a GEOM group for which a list of IDs is requested
2479 * Example: see GEOM_TestOthers.py
2481 ListIDs = GroupOp.GetObjects(theGroup)
2482 if GroupOp.IsDone() == 0:
2483 print "GetObjectIDs : ", GroupOp.GetErrorCode()
2486 def GetType(theGroup):
2488 * Returns a type of sub objects stored in the group
2489 * \param theGroup is a GEOM group which type is returned.
2491 * Example: see GEOM_TestOthers.py
2493 aType = GroupOp.GetType(theGroup)
2494 if GroupOp.IsDone() == 0:
2495 print "GetType : ", GroupOp.GetErrorCode()
2498 def GetMainShape(theGroup):
2500 * Returns a main shape associated with the group
2501 * \param theGroup is a GEOM group for which a main shape object is requested
2502 * \return a GEOM object which is a main shape for theGroup
2504 * Example: see GEOM_TestOthers.py
2506 anObj = GroupOp.GetMainShape(theGroup)
2507 if GroupOp.IsDone() == 0:
2508 print "GetMainShape : ", GroupOp.GetErrorCode()
2511 def GetEdgesByLength (theShape, min_length, max_length, include_min = 1, include_max = 1):
2513 Create group of edges of theShape, whose length is in range [min_length, max_length].
2514 If include_min/max == 0, edges with length == min/max_length will not be included in result.
2517 edges = SubShapeAll(theShape, ShapeType["EDGE"])
2520 Props = BasicProperties(edge)
2521 if min_length <= Props[0] and Props[0] <= max_length:
2522 if (not include_min) and (min_length == Props[0]):
2525 if (not include_max) and (Props[0] == max_length):
2528 edges_in_range.append(edge)
2530 if len(edges_in_range) <= 0:
2531 print "No edges found by given criteria"
2534 group_edges = CreateGroup(theShape, ShapeType["EDGE"])
2535 UnionList(group_edges, edges_in_range)
2539 def SelectEdges (min_length, max_length, include_min = 1, include_max = 1):
2541 Create group of edges of selected shape, whose length is in range [min_length, max_length].
2542 If include_min/max == 0, edges with length == min/max_length will not be included in result.
2545 nb_selected = sg.SelectedCount()
2547 print "Select a shape before calling this function, please."
2550 print "Only one shape must be selected"
2553 id_shape = sg.getSelected(0)
2554 shape = IDToObject( id_shape )
2556 group_edges = GetEdgesByLength(shape, min_length, max_length, include_min, include_max)
2560 if include_min: left_str = " <= "
2561 if include_max: right_str = " <= "
2563 addToStudyInFather(shape, group_edges, "Group of edges with " + `min_length`
2564 + left_str + "length" + right_str + `max_length`)
2566 sg.updateObjBrowser(1)
2572 * Add Path to load python scripts from
2574 if (sys.path.count(Path) < 1):
2575 sys.path.append(Path)