1 // Copyright (C) 2005 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either
7 // version 2.1 of the License.
9 // This library is distributed in the hope that it will be useful
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 // Lesser General Public License for more details.
14 // You should have received a copy of the GNU Lesser General Public
15 // License along with this library; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 // File : GEOM_Gen.idl
21 // Author : Sergey RUIN
26 #include "SALOME_Exception.idl"
27 #include "SALOME_Component.idl"
28 #include "SALOMEDS.idl"
29 #include "SALOMEDS_Attributes.idl"
31 #include "SALOME_GenericObj.idl"
36 * Topological types of shapes (like Open Cascade types)
38 enum shape_type { COMPOUND, COMPSOLID, SOLID, SHELL,
39 FACE, WIRE, EDGE, VERTEX, SHAPE };
43 * State of shape relatively geometrical surface like plane, sphere or cylinder.
44 * Is used in functions GEOM_IShapesOperations.GetShapesOn<xxx>()
48 /*! Shape is on surface */
52 * Shape is in the direction defined by the normal and not on surface.
53 * For plane it means above the plane,
54 * For sphere and cylinder it means outside of volume, bounded by the surface.
59 * Shape is in the direction defined by the normal and on surface.
65 * Complementary to ONOUT.
66 * For plane it means below the plane,
67 * For sphere and cylinder it means inside the volume, bounded by the surface
68 * (beyond axis and surface for cylinder and beyond cented and surface for sphere).
73 * Complementary to OUT.
80 * Kind of method to find inside one main shape some subshapes,
81 * corresponding to other given shape (its argument)
82 * Is used in functions GEOM_Gen.RestoreSubShapes<xxx>()
84 enum find_shape_method
86 /*! Use GetInPlace functionality. Suits all cases, except transformations */
89 /*! To be used only for transformation result, to find subshapes of argument.
90 * Only this method can be used after transformation.
94 /*! To find only shared subshapes, not modified by the operation */
97 /*! Use GetShapesOnShape method (can work only on solids) */
100 /*! Use GetInPlaceByHistory method (can work only after Partition) */
101 FSM_GetInPlaceByHistory
105 typedef sequence<string> string_array;
106 typedef sequence<short> short_array;
107 typedef sequence<long> ListOfLong;
108 typedef sequence<double> ListOfDouble;
110 interface GEOM_Object;
112 typedef sequence<GEOM_Object> ListOfGO;
115 * GEOM_Object: interface of geometric object
117 interface GEOM_Object : SALOME::GenericObj
121 * Get an entry of the object in GEOM component.
126 * Get ID of study, where the object is created.
131 * Get internal type of the object (POINT, BOX, CYLINDER, EXTRUSION...).
136 * Get a <VAR>shape_type</VAR> of the object value.
138 shape_type GetShapeType();
141 * Set name of the object.
142 * \param theName is a name which will be associated with this object.
144 void SetName (in string theName);
147 * Get name of the object associated with this object.
152 * Set color of the object.
153 * \param theColor is a color of the object.
155 void SetColor(in SALOMEDS::Color theColor);
158 * Get color of the object.
160 SALOMEDS::Color GetColor();
163 * Toggle auto color mode on the object.
164 * \param theAtoColor is a flag which toggles auto color mode.
166 void SetAutoColor(in boolean theAutoColor);
169 * Get flag of object's auto color mode.
171 boolean GetAutoColor();
174 * Set a Study entry where this object was published.
176 void SetStudyEntry (in string theEntry);
179 * Get a Study entry where this object was published.
181 string GetStudyEntry();
184 * Get a list of all GEOM objects on which were the arguments
185 * when this object was constructed and modified.
186 * \note This method is supposed to be used by GUI only.
188 ListOfGO GetDependency();
191 * Get a list of GEOM objects on which the last function that created or modified the object depends.
192 * \note This method is supposed to be used by GUI only.
194 ListOfGO GetLastDependency();
197 * Get the TopoDS_Shape, for colocated case only.
199 long long getShape();
202 ######################################################################
203 * Internal methods (For sub shape identification)
204 ######################################################################
208 * Get geometric shape of the object as a byte stream
210 SALOMEDS::TMPFile GetShapeStream();
213 * Returns True if this object is not a sub shape of another object.
215 boolean IsMainShape();
218 * Get a list of ID's of sub shapes in the main shape.
219 * \note Internal method, suppopsed to be used only by GEOM_Client
221 ListOfLong GetSubShapeIndices();
224 * Get a main shape object to which this object is a sub shape
225 * \note Internal method, suppopsed to be used only by GEOM_Client
227 GEOM_Object GetMainShape();
230 * Return true if geom object representes a shape.
231 * For example, method return false for GEOM_MARKER
238 * GEOM_IOperations: basic methods of all geometric operations
240 interface GEOM_IOperations : SALOME::GenericObj
243 * To know, if the operation was successfully performed
248 * Set the operation error code
249 * \param theErrorID is a string describing the error occured
250 * \note This method is supposed to be used only by interfaces inheriting from IOperations.
252 void SetErrorCode (in string theErrorID);
255 * Get the operation error code
257 string GetErrorCode();
260 * Get ID of study, where the operation is defined
265 * Opens a new transaction
267 void StartOperation();
270 * Closes the previously opened trasaction
272 void FinishOperation();
275 * Aborts the previously opened transaction
277 void AbortOperation();
281 * GEOM_IBasicOperations: interface for basic geometry creation
282 * (Point, Vector, Plane, Marker)
284 interface GEOM_IBasicOperations : GEOM_IOperations
287 * Create point by three coordinates.
288 * \param theX The X coordinate of the point.
289 * \param theY The Y coordinate of the point.
290 * \param theZ The Z coordinate of the point.
291 * \return New GEOM_Object, containing the created point.
293 GEOM_Object MakePointXYZ (in double theX, in double theY, in double theZ);
296 * Create a point, distant from the referenced point
297 * on the given distances along the coordinate axes.
298 * \param theReference The referenced point.
299 * \param theX Displacement from the referenced point along OX axis.
300 * \param theY Displacement from the referenced point along OY axis.
301 * \param theZ Displacement from the referenced point along OZ axis.
302 * \return New GEOM_Object, containing the created point.
304 GEOM_Object MakePointWithReference (in GEOM_Object theReference,
305 in double theX, in double theY, in double theZ);
308 * Create a point, corresponding to the given parameter on the given curve.
309 * \param theRefCurve The referenced curve.
310 * \param theParameter Value of parameter on the referenced curve.
311 * \return New GEOM_Object, containing the created point.
313 GEOM_Object MakePointOnCurve (in GEOM_Object theRefCurve,
314 in double theParameter);
317 * Create a point, corresponding to the given parameters on the
319 * \param theRefSurf The referenced surface.
320 * \param theUParameter Value of U-parameter on the referenced surface.
321 * \param theVParameter Value of V-parameter on the referenced surface.
322 * \return New GEOM_Object, containing the created point.
324 GEOM_Object MakePointOnSurface (in GEOM_Object theRefSurf,
325 in double theUParameter,
326 in double theVParameter);
329 * Create a point, on two lines intersection.
330 * \param theRefLine1, theRefLine2 The referenced lines.
331 * \return New GEOM_Object, containing the created point.
333 GEOM_Object MakePointOnLinesIntersection (in GEOM_Object theRefLine1,
334 in GEOM_Object theRefLine2);
337 * Create a vector, corresponding to tangent to the given parameter on the given curve.
338 * \param theRefCurve The referenced curve.
339 * \param theParameter Value of parameter on the referenced curve.This value should be have value
340 * \between 0. and 1.. Value of 0. corresponds first parameter of curve value 1. corresponds
341 * \last parameter of curve.
342 * \return New GEOM_Object, containing the created point.
344 GEOM_Object MakeTangentOnCurve (in GEOM_Object theRefCurve,
345 in double theParameter);
348 * Create a vector with the given components.
349 * \param theDX X component of the vector.
350 * \param theDY Y component of the vector.
351 * \param theDZ Z component of the vector.
352 * \return New GEOM_Object, containing the created vector.
354 GEOM_Object MakeVectorDXDYDZ (in double theDX,
359 * Create a vector between two points.
360 * \param thePnt1 Start point for the vector.
361 * \param thePnt2 End point for the vector.
362 * \return New GEOM_Object, containing the created vector.
364 GEOM_Object MakeVectorTwoPnt (in GEOM_Object thePnt1, in GEOM_Object thePnt2);
367 * Create a line, passing through the given point
368 * and parrallel to the given direction
369 * \param thePnt Point. The resulting line will pass through it.
370 * \param theDir Direction. The resulting line will be parallel to it.
371 * \return New GEOM_Object, containing the created line.
373 GEOM_Object MakeLine (in GEOM_Object thePnt, in GEOM_Object theDir);
376 * Create a line, passing through the given points
377 * \param thePnt1 First of two points, defining the line.
378 * \param thePnt2 Second of two points, defining the line.
379 * \return New GEOM_Object, containing the created line.
381 GEOM_Object MakeLineTwoPnt (in GEOM_Object thePnt1, in GEOM_Object thePnt2);
384 * Create a line, given by two faces intersection.
385 * \param theFace1 First of two faces, defining the line.
386 * \param theFace2 Second of two faces, defining the line.
387 * \return New GEOM_Object, containing the created line.
389 GEOM_Object MakeLineTwoFaces (in GEOM_Object theFace1, in GEOM_Object theFace2);
392 * Create a plane, passing through the three given points
393 * \param thePnt1 First of three points, defining the plane.
394 * \param thePnt2 Second of three points, defining the plane.
395 * \param thePnt3 Fird of three points, defining the plane.
396 * \param theTrimSize Half size of a side of quadrangle face, representing the plane.
397 * \return New GEOM_Object, containing the created plane.
399 GEOM_Object MakePlaneThreePnt (in GEOM_Object thePnt1,
400 in GEOM_Object thePnt2,
401 in GEOM_Object thePnt3,
402 in double theTrimSize);
405 * Create a plane, passing through the given point
406 * and normal to the given vector.
407 * \param thePnt Point, the plane has to pass through.
408 * \param theVec Vector, defining the plane normal direction.
409 * \param theTrimSize Half size of a side of quadrangle face, representing the plane.
410 * \return New GEOM_Object, containing the created plane.
412 GEOM_Object MakePlanePntVec (in GEOM_Object thePnt,
413 in GEOM_Object theVec,
414 in double theTrimSize);
417 * Create a plane, similar to the existing one, but with another size of representing face.
418 * \param theFace Referenced plane or LCS(Marker).
419 * \param theTrimSize New half size of a side of quadrangle face, representing the plane.
420 * \return New GEOM_Object, containing the created plane.
422 GEOM_Object MakePlaneFace (in GEOM_Object theFace,
423 in double theTrimSize);
426 * Create a local coordinate system.
427 * \param theOX,theOY,theOZ Three coordinates of coordinate system origin.
428 * \param theXDX,theXDY,theXDZ Three components of OX direction
429 * \param theYDX,theYDY,theYDZ Three components of OY direction
430 * \return New GEOM_Object, containing the created coordinate system.
432 GEOM_Object MakeMarker (in double theOX , in double theOY , in double theOZ,
433 in double theXDX, in double theXDY, in double theXDZ,
434 in double theYDX, in double theYDY, in double theYDZ);
437 * Create a tangent plane to specified face in the point with specified parameters.
438 * Values of parameters should be between 0. and 1.0
439 * \param theFace - face for which tangent plane shuold be built.
440 * \param theParameterU - value of parameter by U
441 * \param theParameterV - value of parameter Vthe
442 * \param theTrimSize - defines sizes of created face
443 * \return New GEOM_Object, containing the face built on tangent plane.
445 GEOM_Object MakeTangentPlaneOnFace(in GEOM_Object theFace,
446 in double theParameterU,
447 in double theParameterV,
448 in double theTrimSize);
451 interface GEOM_ITransformOperations : GEOM_IOperations
454 * Translate the given object along the vector, specified by its end points.
455 * \param theObject The object to be translated.
456 * \param thePoint1 Start point of translation vector.
457 * \param thePoint2 End point of translation vector.
460 GEOM_Object TranslateTwoPoints (in GEOM_Object theObject,
461 in GEOM_Object thePoint1,
462 in GEOM_Object thePoint2);
465 * Translate the given object along the vector, specified
466 * by its end points, creating its copy before the translation.
467 * \param theObject The object to be translated.
468 * \param thePoint1 Start point of translation vector.
469 * \param thePoint2 End point of translation vector.
470 * \return New GEOM_Object, containing the translated object.
472 GEOM_Object TranslateTwoPointsCopy (in GEOM_Object theObject,
473 in GEOM_Object thePoint1,
474 in GEOM_Object thePoint2);
477 * Translate the given object along the vector, specified by its components.
478 * \param theObject The object to be translated.
479 * \param theDX,theDY,theDZ Components of translation vector.
482 GEOM_Object TranslateDXDYDZ (in GEOM_Object theObject,
483 in double theDX, in double theDY, in double theDZ);
486 * Translate the given object along the vector, specified
487 * by its components, creating its copy before the translation.
488 * \param theObject The object to be translated.
489 * \param theDX,theDY,theDZ Components of translation vector.
490 * \return New GEOM_Object, containing the translated object.
492 GEOM_Object TranslateDXDYDZCopy (in GEOM_Object theObject,
493 in double theDX, in double theDY, in double theDZ);
497 * Translate the given object along the given vector.
498 * \param theObject The object to be translated.
499 * \param theVector Translation vector, giving both direction and distance.
502 GEOM_Object TranslateVector (in GEOM_Object theObject,
503 in GEOM_Object theVector);
506 * Translate the given object along the given vector,
507 * creating its copy before the translation.
508 * \param theObject The object to be translated.
509 * \param theVector Translation vector, giving both direction and distance.
510 * \return New GEOM_Object, containing the translated object.
512 GEOM_Object TranslateVectorCopy (in GEOM_Object theObject,
513 in GEOM_Object theVector);
516 * Translate the given object along the given vector on given distance,
517 * creating its copy before the translation.
518 * \param theObject The object to be translated.
519 * \param theVector Translation vector, giving a direction.
520 * \param theDistance Translation distance, giving a distance.
521 * \param theCope Translation copy, creating its copy if true.
522 * \return New GEOM_Object, containing the translated object.
524 GEOM_Object TranslateVectorDistance (in GEOM_Object theObject,
525 in GEOM_Object theVector,
526 in double theDistance,
530 * Translate the given object along the given vector a given number times
531 * \param theObject The object to be translated.
532 * \param theVector Direction of the translation.
533 * \param theStep Distance to translate on.
534 * \param theNbTimes Quantity of translations to be done.
535 * \return New GEOM_Object, containing compound of all
536 * the shapes, obtained after each translation.
538 GEOM_Object MultiTranslate1D (in GEOM_Object theObject,
539 in GEOM_Object theVector,
544 * Conseqently apply two specified translations to theObject specified number of times.
545 * \param theObject The object to be translated.
546 * \param theVector1 Direction of the first translation.
547 * \param theStep1 Step of the first translation.
548 * \param theNbTimes1 Quantity of translations to be done along theVector1.
549 * \param theVector2 Direction of the second translation.
550 * \param theStep2 Step of the second translation.
551 * \param theNbTimes2 Quantity of translations to be done along theVector2.
552 * \return New GEOM_Object, containing compound of all
553 * the shapes, obtained after each translation.
555 GEOM_Object MultiTranslate2D (in GEOM_Object theObject,
556 in GEOM_Object theVector1,
559 in GEOM_Object theVector2,
561 in long theNbTimes2);
564 * Rotate given object around vector perpendicular to plane containing three points.
565 * \param theObject The object to be rotated.
566 * \param theCentPoint central point - the axis is the vector perpendicular to the plane
567 * containing the three points.
568 * \param thePoint1 and thePoint2 - in a perpendicular plan of the axis.
571 GEOM_Object RotateThreePoints (in GEOM_Object theObject,
572 in GEOM_Object theCentPoint,
573 in GEOM_Object thePoint1,
574 in GEOM_Object thePoint2);
578 * Rotate given object around vector perpendicular to plane containing three points.
579 * Creating its copy before the rotatation.
580 * \param theObject The object to be rotated.
581 * \param theCentPoint central point - the axis is the vector perpendicular to the plane
582 * containing the three points.
583 * \param thePoint1 and thePoint2 - in a perpendicular plan of the axis.
584 * \return New GEOM_Object, containing the rotated object.
586 GEOM_Object RotateThreePointsCopy (in GEOM_Object theObject,
587 in GEOM_Object theCentPoint,
588 in GEOM_Object thePoint1,
589 in GEOM_Object thePoint2);
592 * Rotate the given object around the given axis on the given angle.
593 * \param theObject The object to be rotated.
594 * \param theAxis Rotation axis.
595 * \param theAngle Rotation angle in radians.
598 GEOM_Object Rotate (in GEOM_Object theObject,
599 in GEOM_Object theAxis,
604 * Rotate the given object around the given axis
605 * on the given angle, creating its copy before the rotatation.
606 * \param theObject The object to be rotated.
607 * \param theAxis Rotation axis.
608 * \param theAngle Rotation angle in radians.
609 * \return New GEOM_Object, containing the rotated object.
611 GEOM_Object RotateCopy (in GEOM_Object theObject,
612 in GEOM_Object theAxis,
617 * Rotate the given object around the given axis a given number times.
618 * Rotation angle will be 2*PI/theNbTimes.
619 * \param theObject The object to be rotated.
620 * \param theAxis The rotation axis.
621 * \param theNbTimes Quantity of rotations to be done.
622 * \return New GEOM_Object, containing compound of all the
623 * shapes, obtained after each rotation.
625 GEOM_Object MultiRotate1D (in GEOM_Object theObject,
626 in GEOM_Object theAxis,
630 * Rotate the given object around the
631 * given axis on the given angle a given number
632 * times and multi-translate each rotation result.
633 * Translation direction passes through center of gravity
634 * of rotated shape and its projection on the rotation axis.
635 * \param theObject The object to be rotated.
636 * \param theAxis Rotation axis.
637 * \param theAngle Rotation angle in graduces.
638 * \param theNbTimes1 Quantity of rotations to be done.
639 * \param theStep Translation distance.
640 * \param theNbTimes2 Quantity of translations to be done.
641 * \return New GEOM_Object, containing compound of all the
642 * shapes, obtained after each transformation.
644 GEOM_Object MultiRotate2D (in GEOM_Object theObject,
645 in GEOM_Object theAxis,
649 in long theNbTimes2);
652 * Replace the given object by an object,
653 * symmetrical to it relatively the given plane.
654 * \param theObject The object to be mirrored.
655 * \param thePlane Plane of symmetry.
657 GEOM_Object MirrorPlane (in GEOM_Object theObject, in GEOM_Object thePlane);
660 * Create an object, symmetrical
661 * to the given one relatively the given plane.
662 * \param theObject The object to be mirrored.
663 * \param thePlane Plane of symmetry.
664 * \return New GEOM_Object, containing the mirrored shape.
666 GEOM_Object MirrorPlaneCopy (in GEOM_Object theObject, in GEOM_Object thePlane);
669 * Replace the given object by an object,
670 * symmetrical to it relatively the given axis.
671 * \param theObject The object to be mirrored.
672 * \param theAxis Axis of symmetry.
675 GEOM_Object MirrorAxis (in GEOM_Object theObject, in GEOM_Object theAxis);
678 * Create an object, symmetrical
679 * to the given one relatively the given axis.
680 * \param theObject The object to be mirrored.
681 * \param theAxis Axis of symmetry.
682 * \return New GEOM_Object, containing the mirrored object.
684 GEOM_Object MirrorAxisCopy (in GEOM_Object theObject, in GEOM_Object theAxis);
687 * Replace the given object by an object, symmetrical to it relatively the given point.
688 * \param theObject The object to be mirrored.
689 * \param thePoint Point of symmetry.
692 GEOM_Object MirrorPoint (in GEOM_Object theObject, in GEOM_Object thePoint);
695 * Create an object, symmetrical to the given one relatively the given point.
696 * \param theObject The object to be mirrored.
697 * \param thePoint Point of symmetry.
698 * \return New GEOM_Object, containing the mirrored object.
700 GEOM_Object MirrorPointCopy (in GEOM_Object theObject, in GEOM_Object thePoint);
703 * Replace the given object by its offset.
704 * \param theObject The base object for the offset.
705 * \param theOffset Offset value.
708 GEOM_Object OffsetShape (in GEOM_Object theObject, in double theOffset);
711 * Create new object as offset of the given one.
712 * \param theObject The base object for the offset.
713 * \param theOffset Offset value.
714 * \return New GEOM_Object, containing the offset object.
716 GEOM_Object OffsetShapeCopy (in GEOM_Object theObject, in double theOffset);
719 * Scale the given object by the factor.
720 * \param theObject The object to be scaled.
721 * \param thePoint Center point for scaling.
722 * \param theFactor Scaling factor value.
725 GEOM_Object ScaleShape (in GEOM_Object theObject, in GEOM_Object thePoint,
726 in double theFactor);
729 * Scale the given object by the factor, creating its copy before the scaling.
730 * \param theObject The object to be scaled.
731 * \param thePoint Center point for scaling.
732 * \param theFactor Scaling factor value.
733 * \return New GEOM_Object, containing the scaled shape.
735 GEOM_Object ScaleShapeCopy (in GEOM_Object theObject, in GEOM_Object thePoint,
736 in double theFactor);
739 * Scale the given object by different factors along coordinate axes.
740 * \param theObject The object to be scaled.
741 * \param thePoint Center point for scaling.
742 * \param theFactorX,theFactorY,theFactorZ Scaling factors along each axis.
745 GEOM_Object ScaleShapeAlongAxes (in GEOM_Object theObject,
746 in GEOM_Object thePoint,
747 in double theFactorX,
748 in double theFactorY,
749 in double theFactorZ);
752 * Scale the given object by different factors along coordinate axes,
753 * creating its copy before the scaling.
754 * \param theObject The object to be scaled.
755 * \param thePoint Center point for scaling.
756 * \param theFactorX,theFactorY,theFactorZ Scaling factors along each axis.
757 * \return New GEOM_Object, containing the scaled shape.
759 GEOM_Object ScaleShapeAlongAxesCopy (in GEOM_Object theObject,
760 in GEOM_Object thePoint,
761 in double theFactorX,
762 in double theFactorY,
763 in double theFactorZ);
766 * Modify the Location of the given object by LCS.
767 * \param theObject The object to be displaced.
768 * \param theStartLCS Coordinate system to perform displacement from it.
769 * If \a theStartLCS is NULL, displacement
770 * will be performed from global CS.
771 * If \a theObject itself is used as \a theStartLCS,
772 * its location will be changed to \a theEndLCS.
773 * \param theEndLCS Coordinate system to perform displacement to it.
776 GEOM_Object PositionShape (in GEOM_Object theObject,
777 in GEOM_Object theStartLCS,
778 in GEOM_Object theEndLCS);
781 * Modify the Location of the given object by LCS,
782 * creating its copy before the setting.
783 * \param theObject The object to be displaced.
784 * \param theStartLCS Coordinate system to perform displacement from it.
785 * If \a theStartLCS is NULL, displacement
786 * will be performed from global CS.
787 * If \a theObject itself is used as \a theStartLCS,
788 * its location will be changed to \a theEndLCS.
789 * \param theEndLCS Coordinate system to perform displacement to it.
790 * \return New GEOM_Object, containing the displaced shape.
792 GEOM_Object PositionShapeCopy (in GEOM_Object theObject,
793 in GEOM_Object theStartLCS,
794 in GEOM_Object theEndLCS);
797 * Recompute the shape from its arguments.
798 * \param theObject The object to be recomputed.
801 GEOM_Object RecomputeObject (in GEOM_Object theObject);
805 * GEOM_I3DPrimOperations: Interface for 3D primitives creation
806 * Box, Cylinder, Cone, Sphere, Prism (extrusion),
807 * Pipe (extrusion along contour), Revolution, Solid (from shell).
809 interface GEOM_I3DPrimOperations : GEOM_IOperations
812 * Create a box with specified dimensions along the coordinate axes
813 * and with edges, parallel to the coordinate axes.
814 * Center of the box will be at point (DX/2, DY/2, DZ/2).
815 * \param theDX Length of Box edges, parallel to OX axis.
816 * \param theDY Length of Box edges, parallel to OY axis.
817 * \param theDZ Length of Box edges, parallel to OZ axis.
818 * \return New GEOM_Object, containing the created box.
820 GEOM_Object MakeBoxDXDYDZ (in double theDX, in double theDY, in double theDZ);
823 * Create a box with two specified opposite vertices,
824 * and with edges, parallel to the coordinate axes
825 * \param thePnt1 First of two opposite vertices.
826 * \param thePnt2 Second of two opposite vertices.
827 * \return New GEOM_Object, containing the created box.
829 GEOM_Object MakeBoxTwoPnt (in GEOM_Object thePnt1, in GEOM_Object thePnt2);
832 * Create a cylinder with given radius and height at
833 * the origin of coordinate system. Axis of the cylinder
834 * will be collinear to the OZ axis of the coordinate system.
835 * \param theR Cylinder radius.
836 * \param theH Cylinder height.
837 * \return New GEOM_Object, containing the created cylinder.
839 GEOM_Object MakeCylinderRH (in double theR, in double theH);
842 * Create a cylinder with given base point, axis, radius and height.
843 * \param thePnt Central point of cylinder base.
844 * \param theAxis Cylinder axis.
845 * \param theR Cylinder radius.
846 * \param theH Cylinder height.
847 * \return New GEOM_Object, containing the created cylinder.
849 GEOM_Object MakeCylinderPntVecRH (in GEOM_Object thePnt,
850 in GEOM_Object theAxis,
855 * Create a cone with given height and radiuses at
856 * the origin of coordinate system. Axis of the cone will
857 * be collinear to the OZ axis of the coordinate system.
858 * \param theR1 Radius of the first cone base.
859 * \param theR2 Radius of the second cone base.
860 * \note If both radiuses are non-zero, the cone will be truncated.
861 * \note If the radiuses are equal, a cylinder will be created instead.
862 * \param theH Cone height.
863 * \return New GEOM_Object, containing the created cone.
865 GEOM_Object MakeConeR1R2H (in double theR1, in double theR2, in double theH);
868 * Create a cone with given base point, axis, height and radiuses.
869 * \param thePnt Central point of the first cone base.
870 * \param theAxis Cone axis.
871 * \param theR1 Radius of the first cone base.
872 * \param theR2 Radius of the second cone base.
873 * \note If both radiuses are non-zero, the cone will be truncated.
874 * \note If the radiuses are equal, a cylinder will be created instead.
875 * \param theH Cone height.
876 * \return New GEOM_Object, containing the created cone.
878 GEOM_Object MakeConePntVecR1R2H (in GEOM_Object thePnt,
879 in GEOM_Object theAxis,
885 * Create a torus with given radiuses at the origin of coordinate system.
886 * \param theRMajor Torus major radius.
887 * \param theRMinor Torus minor radius.
888 * \return New GEOM_Object, containing the created torus.
890 GEOM_Object MakeTorusRR (in double theRMajor,
891 in double theRMinor);
894 * Create a torus with given center, normal vector and radiuses.
895 * \param thePnt Torus central point.
896 * \param theVec Torus axis of symmetry.
897 * \param theRMajor Torus major radius.
898 * \param theRMinor Torus minor radius.
899 * \return New GEOM_Object, containing the created torus.
901 GEOM_Object MakeTorusPntVecRR (in GEOM_Object thePnt,
902 in GEOM_Object theVec,
904 in double theRMinor);
907 * Create a sphere with given radius at the origin of coordinate system.
908 * \param theR Sphere radius.
909 * \return New GEOM_Object, containing the created sphere.
911 GEOM_Object MakeSphereR (in double theR);
914 * Create a sphere with given center and radius.
915 * \param thePnt Sphere center.
916 * \param theR Sphere radius.
917 * \return New GEOM_Object, containing the created .
919 GEOM_Object MakeSpherePntR (in GEOM_Object thePnt, in double theR);
922 * Create a shape by extrusion of the base shape along the vector,
923 * i.e. all the space, transfixed by the base shape during its translation
924 * along the vector on the given distance.
925 * \param theBase Base shape to be extruded.
926 * \param theVec Direction of extrusion.
927 * \param theH Prism dimension along theVec.
928 * \return New GEOM_Object, containing the created prism.
930 GEOM_Object MakePrismVecH (in GEOM_Object theBase,
931 in GEOM_Object theVec,
933 /* The Same Prism but in 2 directions (forward&backward) */
934 GEOM_Object MakePrismVecH2Ways (in GEOM_Object theBase,
935 in GEOM_Object theVec,
939 * Create a shape by extrusion of the base shape along a vector, defined by two points.
940 * \param theBase Base shape to be extruded.
941 * \param thePoint1 First end of extrusion vector.
942 * \param thePoint2 Second end of extrusion vector.
943 * \return New GEOM_Object, containing the created prism.
945 GEOM_Object MakePrismTwoPnt (in GEOM_Object theBase,
946 in GEOM_Object thePoint1,
947 in GEOM_Object thePoint2);
948 /* The same prism but in two directions forward&backward */
949 GEOM_Object MakePrismTwoPnt2Ways (in GEOM_Object theBase,
950 in GEOM_Object thePoint1,
951 in GEOM_Object thePoint2);
954 * Create a shape by extrusion of the base shape along
955 * the path shape. The path shape can be a wire or an edge.
956 * \param theBase Base shape to be extruded.
957 * \param thePath Path shape to extrude the base shape along it.
958 * \return New GEOM_Object, containing the created pipe.
960 GEOM_Object MakePipe (in GEOM_Object theBase, in GEOM_Object thePath);
963 * Create a shape by revolution of the base shape around the axis
964 * on the given angle, i.e. all the space, transfixed by the base
965 * shape during its rotation around the axis on the given angle.
966 * \param theBase Base shape to be rotated.
967 * \param theAxis Rotation axis.
968 * \param theAngle Rotation angle in radians.
969 * \return New GEOM_Object, containing the created revolution.
971 GEOM_Object MakeRevolutionAxisAngle (in GEOM_Object theBase,
972 in GEOM_Object theAxis,
974 /* The Same Revolution but in both ways forward&backward */
975 GEOM_Object MakeRevolutionAxisAngle2Ways (in GEOM_Object theBase,
976 in GEOM_Object theAxis,
980 * Create a filling from the given compound of contours.
981 * \param theMinDeg a minimal degree of BSpline surface to create
982 * \param theMaxDeg a maximal degree of BSpline surface to create
983 * \param theTol2D a 2d tolerance to be reached
984 * \param theTol3D a 3d tolerance to be reached
985 * \param theNbIter a number of iteration of approximation algorithm
986 * \return New GEOM_Object, containing the created filling surface.
988 GEOM_Object MakeFilling (in GEOM_Object theShape,
989 in long theMinDeg, in long theMaxDeg,
990 in double theTol2D, in double theTol3D,
991 in long theNbIter, in boolean theApprox);
994 * Create a shell or solid passing through set of sections.Sections should be wires,edges or vertices.
995 * \param theSeqSections - set of specified sections.
996 * \param theModeSolid - mode defining building solid or shell
997 * \param thePreci - precision 3D used for smoothing by default 1.e-6
998 * \param theRuled - mode defining type of the result surfaces (ruled or smoothed).
999 * \return New GEOM_Object, containing the created shell or solid.
1001 GEOM_Object MakeThruSections(in ListOfGO theSeqSections,
1002 in boolean theModeSolid,
1004 in boolean theRuled);
1007 * Create a shape by extrusion of the profile shape along
1008 * the path shape. The path shape can be a wire or an edge.
1009 * the several profiles can be specified in the several locations of path.
1010 * \param theSeqBases - list of Bases shape to be extruded.
1011 * \param theLocations - list of locations on the path corresponding
1012 * specified list of the Bases shapes. Number of locations
1013 * should be equal to number of bases or list of locations can be empty.
1014 * \param thePath - Path shape to extrude the base shape along it.
1015 * \param theWithContact - the mode defining that the section is translated to be in
1016 * contact with the spine.
1017 * \param - WithCorrection - defining that the section is rotated to be
1018 * orthogonal to the spine tangent in the correspondent point
1019 * \return New GEOM_Object, containing the created pipe.
1021 GEOM_Object MakePipeWithDifferentSections (in ListOfGO theSeqBases,
1022 in ListOfGO theLocations,
1023 in GEOM_Object thePath,
1024 in boolean theWithContact ,
1025 in boolean theWithCorrection );
1028 * Create a shape by extrusion of the profile shape along
1029 * the path shape. The path shape can be a shell or a face.
1030 * the several profiles can be specified in the several locations of path.
1031 * \param theSeqBases - list of Bases shape to be extruded.
1032 * \param theSeqSubBases - list of corresponding subshapes of section shapes.
1033 * \param theLocations - list of locations on the path corresponding
1034 * specified list of the Bases shapes. Number of locations
1035 * should be equal to number of bases.
1036 * \param thePath - Path shape to extrude the base shape along it.
1037 * \param theWithContact - the mode defining that the section is translated to be in
1038 * contact with the spine.
1039 * \param - WithCorrection - defining that the section is rotated to be
1040 * orthogonal to the spine tangent in the correspondent point
1041 * \return New GEOM_Object, containing the created pipe.
1043 GEOM_Object MakePipeWithShellSections (in ListOfGO theSeqBases,
1044 in ListOfGO theSeqSubBases,
1045 in ListOfGO theLocations,
1046 in GEOM_Object thePath,
1047 in boolean theWithContact ,
1048 in boolean theWithCorrection );
1051 * Create solids between given sections
1052 * \param theSeqBases - list of sections (shell or face).
1053 * \param theLocations - list of corresponding vertexes
1054 * \return New GEOM_Object, containing the created solids.
1056 GEOM_Object MakePipeShellsWithoutPath (in ListOfGO theSeqBases,
1057 in ListOfGO theLocations);
1060 * Create a shape by extrusion of the base shape along
1061 * the path shape with constant bi-normal direction along the given vector.
1062 * The path shape can be a wire or an edge.
1063 * \param theBase Base shape to be extruded.
1064 * \param thePath Path shape to extrude the base shape along it.
1065 * \param theVec Vector defines a constant binormal direction to keep the
1066 * same angle beetween the Direction and the sections
1067 * along the sweep surface.
1068 * \return New GEOM_Object, containing the created pipe.
1070 GEOM_Object MakePipeBiNormalAlongVector (in GEOM_Object theBase,
1071 in GEOM_Object thePath,
1072 in GEOM_Object theVec);
1076 * GEOM_IShapesOperations: Interface for Shapes creation:
1077 * Edge from two points, Wire from edges, Face from wire,
1078 * Shell from faces, Solid from shells, Compound from shapes
1080 interface GEOM_IShapesOperations : GEOM_IOperations
1083 * Create a linear edge with specified ends.
1084 * \param thePnt1 Point for the first end of edge.
1085 * \param thePnt2 Point for the second end of edge.
1086 * \return New GEOM_Object, containing the created edge.
1088 GEOM_Object MakeEdge (in GEOM_Object thePnt1, in GEOM_Object thePnt2);
1091 * Create a wire from the set of edges and wires.
1092 * \param theEdgesAndWires List of edge and/or wires.
1093 * \return New GEOM_Object, containing the created wire.
1095 GEOM_Object MakeWire (in ListOfGO theEdgesAndWires);
1098 * Create a face on the given wire.
1099 * \param theWire closed Wire or Edge to build the face on.
1100 * \param isPlanarWanted If TRUE, only planar face will be built.
1101 * If impossible, NULL object will be returned.
1102 * \return New GEOM_Object, containing the created face.
1104 GEOM_Object MakeFace (in GEOM_Object theWire, in boolean isPlanarWanted);
1107 * Create a face on the given wires set.
1108 * \param theWires List of closed wires or edges to build the face on.
1109 * \param isPlanarWanted If TRUE, only planar face will be built.
1110 * If impossible, NULL object will be returned.
1111 * \return New GEOM_Object, containing the created face.
1113 GEOM_Object MakeFaceWires (in ListOfGO theWires, in boolean isPlanarWanted);
1116 * Create a shell from the set of faces and shells.
1117 * \param theFacesAndShells List of faces and/or shells.
1118 * \return New GEOM_Object, containing the created shell.
1120 GEOM_Object MakeShell (in ListOfGO theFacesAndShells);
1123 * Create a solid, bounded by the given shell.
1124 * \param theShell Bounding shell.
1125 * \return New GEOM_Object, containing the created solid.
1127 GEOM_Object MakeSolidShell (in GEOM_Object theShell);
1130 * Create a solid, bounded by the given shells.
1131 * \param theShells Bounding shells.
1132 * \return New GEOM_Object, containing the created solid.
1134 GEOM_Object MakeSolidShells (in ListOfGO theShells);
1137 * Create a compound of the given shapes.
1138 * \param theShapes List of shapes to put in compound.
1139 * \return New GEOM_Object, containing the created compound.
1141 GEOM_Object MakeCompound (in ListOfGO theShapes);
1144 * Replace coincident faces in theShape by one face.
1145 * \param theShape Initial shape.
1146 * \param theTolerance Maximum distance between faces, which can be considered as coincident.
1147 * \param doKeepNonSolids If FALSE, only solids will present in the result, otherwise all initial shapes.
1148 * \return New GEOM_Object, containing a copy of theShape without coincident faces.
1150 GEOM_Object MakeGlueFaces (in GEOM_Object theShape, in double theTolerance, in boolean doKeepNonSolids);
1153 * Find coincident faces in theShape for possible gluing.
1154 * \param theShape Initial shape.
1155 * \param theTolerance Maximum distance between faces, which can be considered as coincident.
1158 ListOfGO GetGlueFaces (in GEOM_Object theShape, in double theTolerance);
1161 * Replace coincident faces in theShape by one face
1162 * in compliance with given list of faces
1163 * \param theShape Initial shape.
1164 * \param theTolerance Maximum distance between faces, which can be considered as coincident.
1165 * \param theFaces List of faces for gluing.
1166 * \param doKeepNonSolids If FALSE, only solids will present in the result, otherwise all initial shapes.
1167 * \return New GEOM_Object, containing a copy of theShape without some faces.
1169 GEOM_Object MakeGlueFacesByList (in GEOM_Object theShape, in double theTolerance,
1170 in ListOfGO theFaces, in boolean doKeepNonSolids);
1173 * Explode a shape on subshapes of a given type.
1174 * \param theShape Shape to be exploded.
1175 * \param theShapeType Type of sub-shapes to be retrieved.
1176 * \param isSorted If this parameter is TRUE, sub-shapes will be
1177 * sorted by coordinates of their gravity centers.
1178 * \return List of sub-shapes of type theShapeType, contained in theShape.
1180 ListOfGO MakeExplode (in GEOM_Object theShape,
1181 in long theShapeType,
1182 in boolean isSorted);
1185 * Explode a shape on subshapes of a given type.
1186 * Does the same, as the above method, but returns IDs of sub-shapes,
1187 * not GEOM_Objects. It works faster.
1188 * \param theShape Shape to be exploded.
1189 * \param theShapeType Type of sub-shapes to be retrieved.
1190 * \param isSorted If this parameter is TRUE, sub-shapes will be
1191 * sorted by coordinates of their gravity centers.
1192 * \return List of IDs of sub-shapes of type theShapeType, contained in theShape.
1194 ListOfLong SubShapeAllIDs (in GEOM_Object theShape,
1195 in long theShapeType,
1196 in boolean isSorted);
1199 * Get a sub shape defined by its unique ID inside \a theMainShape
1200 * \note The sub shape GEOM_Objects can has ONLY ONE function.
1201 * Don't try to apply modification operations on them.
1203 GEOM_Object GetSubShape (in GEOM_Object theMainShape,
1207 * Get global index of \a theSubShape in \a theMainShape.
1208 * \param theMainShape Main shape.
1209 * \param theSubShape Sub-shape of the main shape.
1210 * \return global index of \a theSubShape in \a theMainShape.
1212 long GetSubShapeIndex (in GEOM_Object theMainShape, in GEOM_Object theSubShape);
1215 * Get index of \a theSubShape in \a theMainShape, unique among sub-shapes of the same type.
1216 * Together with method <VAR>GetShapeTypeString()</VAR> it can be used
1217 * to generate automatic names for sub-shapes, when publishing them in a study.
1218 * \param theMainShape Main shape.
1219 * \param theSubShape Sub-shape of the main shape.
1220 * \return index of \a theSubShape in a list of all sub-shapes of \a theMainShape of the same type.
1222 long GetTopologyIndex (in GEOM_Object theMainShape, in GEOM_Object theSubShape);
1225 * \brief Get name of type of \a theShape.
1227 * Use wide type notation, taking into consideration both topology and geometry of the shape.
1228 * Together with method <VAR>GetTopologyIndex()</VAR> it can be used
1229 * to generate automatic names for sub-shapes, when publishing them in a study.
1230 * \param theShape The shape to get a type of.
1231 * \return String, containing a type name of \a theShape.
1233 string GetShapeTypeString (in GEOM_Object theShape);
1236 * Count number of faces in the given shape.
1237 * \param theShape Shape to count faces in.
1238 * \return Number of faces in the given shape.
1240 long NumberOfFaces (in GEOM_Object theShape);
1243 * Count number of edges in the given shape.
1244 * \param theShape Shape to count edges in.
1245 * \return Number of edges in theShape.
1247 long NumberOfEdges (in GEOM_Object theShape);
1250 * Reverses an orientation the given shape.
1251 * \param theShape Shape to be reversed.
1252 * \return The reversed copy of theShape.
1254 GEOM_Object ChangeOrientation (in GEOM_Object theShape);
1257 * Retrieve all free faces from the given shape.
1258 * Free face is a face, which is not shared between two shells of the shape.
1259 * \param theShape Shape to find free faces in.
1260 * \return List of IDs of all free faces, contained in theShape.
1262 ListOfLong GetFreeFacesIDs (in GEOM_Object theShape);
1265 * Get all sub-shapes of theShape1 of the given type, shared with theShape2.
1266 * \param theShape1 Shape to find sub-shapes in.
1267 * \param theShape2 Shape to find shared sub-shapes with.
1268 * \param theShapeType Type of sub-shapes to be retrieved.
1269 * \return List of sub-shapes of theShape1, shared with theShape2.
1271 ListOfGO GetSharedShapes (in GEOM_Object theShape1,
1272 in GEOM_Object theShape2,
1273 in long theShapeType);
1276 * Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
1277 * the specified plane by the certain way, defined through \a theState parameter.
1278 * \param theShape Shape to find sub-shapes of.
1279 * \param theShapeType Type of sub-shapes to be retrieved.
1280 * \param theAx1 Vector (or line, or linear edge), specifying normal
1281 * direction and location of the plane to find shapes on.
1282 * \param theState The state of the subshapes to find.
1283 * \return List of all found sub-shapes.
1285 ListOfGO GetShapesOnPlane (in GEOM_Object theShape,
1286 in long theShapeType,
1287 in GEOM_Object theAx1,
1288 in shape_state theState);
1290 * Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
1291 * the specified plane by the certain way, defined through \a theState parameter.
1292 * \param theShape Shape to find sub-shapes of.
1293 * \param theShapeType Type of sub-shapes to be retrieved.
1294 * \param theAx1 Vector (or line, or linear edge), specifying normal
1295 * direction of the plane to find shapes on.
1296 * \param thePnt Point specifying location of the plane to find shapes on.
1297 * \param theState The state of the subshapes to find.
1298 * \return List of all found sub-shapes.
1300 ListOfGO GetShapesOnPlaneWithLocation (in GEOM_Object theShape,
1301 in long theShapeType,
1302 in GEOM_Object theAx1,
1303 in GEOM_Object thePnt,
1304 in shape_state theState);
1309 * Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
1310 * the specified cylinder by the certain way, defined through \a theState parameter.
1311 * \param theShape Shape to find sub-shapes of.
1312 * \param theShapeType Type of sub-shapes to be retrieved.
1313 * \param theAxis Vector (or line, or linear edge), specifying
1314 * axis of the cylinder to find shapes on.
1315 * \param theRadius Radius of the cylinder to find shapes on.
1316 * \param theState The state of the subshapes to find.
1317 * \return List of all found sub-shapes.
1319 ListOfGO GetShapesOnCylinder (in GEOM_Object theShape,
1320 in long theShapeType,
1321 in GEOM_Object theAxis,
1322 in double theRadius,
1323 in shape_state theState);
1326 * Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
1327 * the specified sphere by the certain way, defined through \a theState parameter.
1328 * \param theShape Shape to find sub-shapes of.
1329 * \param theShapeType Type of sub-shapes to be retrieved.
1330 * \param theCenter Point, specifying center of the sphere to find shapes on.
1331 * \param theRadius Radius of the sphere to find shapes on.
1332 * \param theState The state of the subshapes to find.
1333 * \return List of all found sub-shapes.
1335 ListOfGO GetShapesOnSphere (in GEOM_Object theShape,
1336 in long theShapeType,
1337 in GEOM_Object theCenter,
1338 in double theRadius,
1339 in shape_state theState);
1342 * Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
1343 * the specified quadrangle by the certain way, defined through \a theState parameter.
1344 * \param theShape Shape to find sub-shapes of.
1345 * \param theShapeType Type of sub-shapes to be retrieved.
1346 * \param theTopLeftPoint Top left quadrangle corner
1347 * \param theTopRigthPoint Top right quadrangle corner
1348 * \param theBottomLeftPoint Bottom left quadrangle corner
1349 * \param theBottomRigthPoint Bottom right quadrangle corner
1350 * \param theState The state of the subshapes to find.
1351 * \return List of all found sub-shapes.
1353 ListOfGO GetShapesOnQuadrangle (in GEOM_Object theShape,
1354 in long theShapeType,
1355 in GEOM_Object theTopLeftPoint,
1356 in GEOM_Object theTopRigthPoint,
1357 in GEOM_Object theBottomLeftPoint,
1358 in GEOM_Object theBottomRigthPoint,
1359 in shape_state theState);
1362 * Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
1363 * the specified plane by the certain way, defined through \a theState parameter.
1364 * \param theShape Shape to find sub-shapes of.
1365 * \param theShapeType Type of sub-shapes to be retrieved.
1366 * \param theAx1 Vector (or line, or linear edge), specifying normal
1367 * direction and location of the plane to find shapes on.
1368 * \param theState The state of the subshapes to find.
1369 * \return List of IDs of all found sub-shapes.
1371 ListOfLong GetShapesOnPlaneIDs (in GEOM_Object theShape,
1372 in long theShapeType,
1373 in GEOM_Object theAx1,
1374 in shape_state theState);
1377 * Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
1378 * the specified plane by the certain way, defined through \a theState parameter.
1379 * \param theShape Shape to find sub-shapes of.
1380 * \param theShapeType Type of sub-shapes to be retrieved.
1381 * \param theAx1 Vector (or line, or linear edge), specifying normal
1382 * direction of the plane to find shapes on.
1383 * \param thePnt Point specifying location of the plane to find shapes on.
1384 * \param theState The state of the subshapes to find.
1385 * \return List of IDs of all found sub-shapes.
1387 ListOfLong GetShapesOnPlaneWithLocationIDs (in GEOM_Object theShape,
1388 in long theShapeType,
1389 in GEOM_Object theAx1,
1390 in GEOM_Object thePnt,
1391 in shape_state theState);
1394 * Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
1395 * the specified cylinder by the certain way, defined through \a theState parameter.
1396 * \param theShape Shape to find sub-shapes of.
1397 * \param theShapeType Type of sub-shapes to be retrieved.
1398 * \param theAxis Vector (or line, or linear edge), specifying
1399 * axis of the cylinder to find shapes on.
1400 * \param theRadius Radius of the cylinder to find shapes on.
1401 * \param theState The state of the subshapes to find.
1402 * \return List of IDs of all found sub-shapes.
1404 ListOfLong GetShapesOnCylinderIDs (in GEOM_Object theShape,
1405 in long theShapeType,
1406 in GEOM_Object theAxis,
1407 in double theRadius,
1408 in shape_state theState);
1411 * Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
1412 * the specified sphere by the certain way, defined through \a theState parameter.
1413 * \param theShape Shape to find sub-shapes of.
1414 * \param theShapeType Type of sub-shapes to be retrieved.
1415 * \param theCenter Point, specifying center of the sphere to find shapes on.
1416 * \param theRadius Radius of the sphere to find shapes on.
1417 * \param theState The state of the subshapes to find.
1418 * \return List of IDs of all found sub-shapes.
1420 ListOfLong GetShapesOnSphereIDs (in GEOM_Object theShape,
1421 in long theShapeType,
1422 in GEOM_Object theCenter,
1423 in double theRadius,
1424 in shape_state theState);
1427 * Find in \a theShape all sub-shapes of type \a theShapeType, situated relatively
1428 * the specified quadrangle by the certain way, defined through \a theState parameter.
1429 * \param theShape Shape to find sub-shapes of.
1430 * \param theShapeType Type of sub-shapes to be retrieved.
1431 * \param theTopLeftPoint Top left quadrangle corner
1432 * \param theTopRigthPoint Top right quadrangle corner
1433 * \param theBottomLeftPoint Bottom left quadrangle corner
1434 * \param theBottomRigthPoint Bottom right quadrangle corner
1435 * \param theState The state of the subshapes to find.
1436 * \return List of IDs of all found sub-shapes.
1438 ListOfLong GetShapesOnQuadrangleIDs (in GEOM_Object theShape,
1439 in long theShapeType,
1440 in GEOM_Object theTopLeftPoint,
1441 in GEOM_Object theTopRigthPoint,
1442 in GEOM_Object theBottomLeftPoint,
1443 in GEOM_Object theBottomRigthPoint,
1444 in shape_state theState);
1447 * \brief Find subshapes complying with given status
1448 * \param theBox - the box to check state of subshapes against
1449 * \param theShape - the shape to explore
1450 * \param theShapeType - type of subshape of theShape
1451 * \param theState - required state
1452 * \return List of IDs of all found sub-shapes.
1454 ListOfLong GetShapesOnBoxIDs (in GEOM_Object theBox,
1455 in GEOM_Object theShape,
1456 in long theShapeType,
1457 in shape_state theState);
1460 * \brief Find subshapes complying with given status
1461 * \param theBox - the box to check state of subshapes against
1462 * \param theShape - the shape to explore
1463 * \param theShapeType - type of subshape of theShape
1464 * \param theState - required state
1465 * \return List of all found sub-shapes.
1467 ListOfGO GetShapesOnBox (in GEOM_Object theBox,
1468 in GEOM_Object theShape,
1469 in long theShapeType,
1470 in shape_state theState);
1473 * \brief Find subshapes complying with given status
1474 * \param theCheckShape - the shape to check state of subshapes against
1475 * \param theShape - the shape to explore
1476 * \param theShapeType - type of subshape of theShape
1477 * \param theState - required state
1478 * \return List of IDs of all found sub-shapes.
1480 ListOfLong GetShapesOnShapeIDs (in GEOM_Object theCheckShape,
1481 in GEOM_Object theShape,
1482 in short theShapeType,
1483 in shape_state theState);
1486 * \brief Find subshapes complying with given status
1487 * \param theCheckShape - the shape to check state of subshapes against
1488 * \param theShape - the shape to explore
1489 * \param theShapeType - type of subshape of theShape
1490 * \param theState - required state
1491 * \return List of all found sub-shapes.
1493 ListOfGO GetShapesOnShape (in GEOM_Object theCheckShape,
1494 in GEOM_Object theShape,
1495 in short theShapeType,
1496 in shape_state theState);
1499 * \brief Find subshapes complying with given status
1500 * \param theCheckShape - the shape to check state of subshapes against
1501 * \param theShape - the shape to explore
1502 * \param theShapeType - type of subshape of theShape
1503 * \param theState - required state
1504 * \return compound includes all found sub-shapes.
1506 GEOM_Object GetShapesOnShapeAsCompound (in GEOM_Object theCheckShape,
1507 in GEOM_Object theShape,
1508 in short theShapeType,
1509 in shape_state theState);
1512 * Get sub-shape(s) of \a theShapeWhere, which are
1513 * coincident with \a theShapeWhat or could be a part of it.
1514 * \param theShapeWhere Shape to find sub-shapes of.
1515 * \param theShapeWhat Shape, specifying what to find.
1516 * \return Group of all found sub-shapes or a single found sub-shape.
1518 GEOM_Object GetInPlace (in GEOM_Object theShapeWhere,
1519 in GEOM_Object theShapeWhat);
1522 * Get sub-shape(s) of \a theShapeWhere, which are
1523 * coincident with \a theShapeWhat or could be a part of it.
1525 * Implementation of this method is based on a saved history of an operation,
1526 * produced \a theShapeWhere. The \a theShapeWhat must be among this operation's
1527 * arguments (an argument shape or a sub-shape of an argument shape).
1528 * The operation could be the Partition or one of boolean operations,
1529 * performed on simple shapes (not on compounds).
1531 * \param theShapeWhere Shape to find sub-shapes of.
1532 * \param theShapeWhat Shape, specifying what to find.
1533 * \return Group of all found sub-shapes or a single found sub-shape.
1535 GEOM_Object GetInPlaceByHistory (in GEOM_Object theShapeWhere,
1536 in GEOM_Object theShapeWhat);
1539 * Get sub-shape of theShapeWhere, which are
1540 * coincident with \a theShapeWhat that can either SOLID, FACE, EDGE or VERTEX.
1541 * \param theShapeWhere Shape to find sub-shapes of.
1542 * \param theShapeWhat Shape, specifying what to find.
1543 * \return found sub-shape.
1545 GEOM_Object GetSame (in GEOM_Object theShapeWhere,
1546 in GEOM_Object theShapeWhat);
1550 * GEOM_IBlocksOperations: Interface for Blocks construction
1551 * Face from points or edges, Block from faces,
1552 * Blocks multi-translation and multi-rotation
1554 interface GEOM_IBlocksOperations : GEOM_IOperations
1557 * Creation of blocks
1561 * Create a quadrangle face from four edges. Order of Edges is not
1562 * important. It is not necessary that edges share the same vertex.
1563 * \param theEdge1,theEdge2,theEdge3,theEdge4 Edges for the face bound.
1564 * \return New GEOM_Object, containing the created face.
1566 GEOM_Object MakeQuad (in GEOM_Object theEdge1,
1567 in GEOM_Object theEdge2,
1568 in GEOM_Object theEdge3,
1569 in GEOM_Object theEdge4);
1572 * Create a quadrangle face on two edges.
1573 * The missing edges will be built by creating the shortest ones.
1574 * \param theEdge1,theEdge2 Two opposite edges for the face.
1575 * \return New GEOM_Object, containing the created face.
1577 GEOM_Object MakeQuad2Edges (in GEOM_Object theEdge1,
1578 in GEOM_Object theEdge2);
1581 * Create a quadrangle face with specified corners.
1582 * The missing edges will be built by creating the shortest ones.
1583 * \param thePnt1,thePnt2,thePnt3,thePnt4 Corner vertices for the face.
1584 * \return New GEOM_Object, containing the created face.
1586 GEOM_Object MakeQuad4Vertices (in GEOM_Object thePnt1,
1587 in GEOM_Object thePnt2,
1588 in GEOM_Object thePnt3,
1589 in GEOM_Object thePnt4);
1592 * Create a hexahedral solid, bounded by the six given faces. Order of
1593 * faces is not important. It is not necessary that Faces share the same edge.
1594 * \param theFace1-theFace6 Faces for the hexahedral solid.
1595 * \return New GEOM_Object, containing the created solid.
1597 GEOM_Object MakeHexa (in GEOM_Object theFace1,
1598 in GEOM_Object theFace2,
1599 in GEOM_Object theFace3,
1600 in GEOM_Object theFace4,
1601 in GEOM_Object theFace5,
1602 in GEOM_Object theFace6);
1605 * Create a hexahedral solid between two given faces.
1606 * The missing faces will be built by creating the smallest ones.
1607 * \param theFace1,theFace2 Two opposite faces for the hexahedral solid.
1608 * \return New GEOM_Object, containing the created solid.
1610 GEOM_Object MakeHexa2Faces (in GEOM_Object theFace1,
1611 in GEOM_Object theFace2);
1614 * Extract elements of blocks and blocks compounds
1618 * Get a vertex, found in the given shape by its coordinates.
1619 * \param theShape Block or a compound of blocks.
1620 * \param theX,theY,theZ Coordinates of the sought vertex.
1621 * \param theEpsilon Maximum allowed distance between the resulting
1622 * vertex and point with the given coordinates.
1623 * \return New GEOM_Object, containing the found vertex.
1625 GEOM_Object GetPoint (in GEOM_Object theShape,
1629 in double theEpsilon);
1632 * Get an edge, found in the given shape by two given vertices.
1633 * \param theShape Block or a compound of blocks.
1634 * \param thePoint1,thePoint2 Points, close to the ends of the desired edge.
1635 * \return New GEOM_Object, containing the found edge.
1637 GEOM_Object GetEdge (in GEOM_Object theShape,
1638 in GEOM_Object thePoint1,
1639 in GEOM_Object thePoint2);
1642 * Find an edge of the given shape, which has minimal distance to the given point.
1643 * \param theShape Block or a compound of blocks.
1644 * \param thePoint Point, close to the desired edge.
1645 * \return New GEOM_Object, containing the found edge.
1647 GEOM_Object GetEdgeNearPoint (in GEOM_Object theShape,
1648 in GEOM_Object thePoint);
1651 * Returns a face, found in the given shape by four given corner vertices.
1652 * \param theShape Block or a compound of blocks.
1653 * \param thePoint1-thePoint4 Points, close to the corners of the desired face.
1654 * \return New GEOM_Object, containing the found face.
1656 GEOM_Object GetFaceByPoints (in GEOM_Object theShape,
1657 in GEOM_Object thePoint1,
1658 in GEOM_Object thePoint2,
1659 in GEOM_Object thePoint3,
1660 in GEOM_Object thePoint4);
1663 * Get a face of block, found in the given shape by two given edges.
1664 * \param theShape Block or a compound of blocks.
1665 * \param theEdge1,theEdge2 Edges, close to the edges of the desired face.
1666 * \return New GEOM_Object, containing the found face.
1668 GEOM_Object GetFaceByEdges (in GEOM_Object theShape,
1669 in GEOM_Object theEdge1,
1670 in GEOM_Object theEdge2);
1673 * Find a face, opposite to the given one in the given block.
1674 * \param theBlock Must be a hexahedral solid.
1675 * \param theFace Face of \a theBlock, opposite to the desired face.
1676 * \return New GEOM_Object, containing the found face.
1678 GEOM_Object GetOppositeFace (in GEOM_Object theBlock,
1679 in GEOM_Object theFace);
1682 * Find a face of the given shape, which has minimal distance to the given point.
1683 * \param theShape Block or a compound of blocks.
1684 * \param thePoint Point, close to the desired face.
1685 * \return New GEOM_Object, containing the found face.
1687 GEOM_Object GetFaceNearPoint (in GEOM_Object theShape,
1688 in GEOM_Object thePoint);
1691 * Find a face of block, whose outside normale has minimal angle with the given vector.
1692 * \param theShape Block or a compound of blocks.
1693 * \param theVector Vector, close to the normale of the desired face.
1694 * \return New GEOM_Object, containing the found face.
1696 GEOM_Object GetFaceByNormale (in GEOM_Object theBlock,
1697 in GEOM_Object theVector);
1700 * Extract blocks from blocks compounds
1704 * Check, if the compound contains only specified blocks.
1705 * \param theCompound The compound to check.
1706 * \param theMinNbFaces If solid has lower number of faces, it is not a block.
1707 * \param theMaxNbFaces If solid has higher number of faces, it is not a block.
1708 * \note If theMaxNbFaces = 0, the maximum number of faces is not restricted.
1709 * \return TRUE, if the given compound contains only blocks.
1710 * \return theNbBlocks Number of specified blocks in theCompound.
1712 boolean IsCompoundOfBlocks (in GEOM_Object theCompound,
1713 in long theMinNbFaces,
1714 in long theMaxNbFaces,
1715 out long theNbBlocks);
1718 * Enumeration of Blocks Compound defects.
1722 /* Each element of the compound should be a Block */
1725 /* An element is a potential block, but has degenerated and/or seam edge(s). */
1728 /* A connection between two Blocks should be an entire face or an entire edge */
1731 /* The compound should be connexe */
1734 /* The glue between two quadrangle faces should be applied */
1739 * Description of Blocks Compound defect: type and incriminated sub-shapes.
1744 ListOfLong incriminated;
1748 * Sequence of all Blocks Compound defects.
1750 typedef sequence<BCError> BCErrors;
1753 * Check, if the compound of blocks is given.
1754 * To be considered as a compound of blocks, the
1755 * given shape must satisfy the following conditions:
1756 * - Each element of the compound should be a Block (6 faces and 12 edges).
1757 * - A connection between two Blocks should be an entire quadrangle face or an entire edge.
1758 * - The compound should be connexe.
1759 * - The glue between two quadrangle faces should be applied.
1760 * \note Single block is also accepted as a valid compound of blocks.
1761 * \param theCompound The compound to check.
1762 * \return TRUE, if the given shape is a compound of blocks.
1763 * \return theErrors Structure, containing discovered errors and incriminated sub-shapes.
1765 boolean CheckCompoundOfBlocks (in GEOM_Object theCompound,
1766 out BCErrors theErrors);
1769 * Convert sequence of Blocks Compound errors, returned by
1770 * <VAR>CheckCompoundOfBlocks()</VAR>, into string.
1771 * \param theCompound The bad compound.
1772 * \param theErrors The sequence of \a theCompound errors.
1773 * \return String, describing all the errors in form, suitable for printing.
1775 string PrintBCErrors (in GEOM_Object theCompound,
1776 in BCErrors theErrors);
1779 * Remove all seam and degenerated edges from \a theShape.
1780 * Unite faces and edges, sharing one surface.
1781 * \param theShape The compound or single solid to remove irregular edges from.
1782 * \return Improved shape.
1784 GEOM_Object RemoveExtraEdges (in GEOM_Object theShape);
1787 * Check, if the given shape is a blocks compound.
1788 * Fix all detected errors.
1789 * \note Single block can be also fixed by this method.
1790 * \param theCompound The compound to check and improve.
1791 * \return Improved compound.
1793 GEOM_Object CheckAndImprove (in GEOM_Object theCompound);
1796 * Get all the blocks, contained in the given compound.
1797 * \param theCompound The compound to explode.
1798 * \param theMinNbFaces If solid has lower number of faces, it is not a block.
1799 * \param theMaxNbFaces If solid has higher number of faces, it is not a block.
1800 * \note If theMaxNbFaces = 0, the maximum number of faces is not restricted.
1801 * \return List of GEOM_Objects, containing the retrieved blocks.
1803 ListOfGO ExplodeCompoundOfBlocks (in GEOM_Object theCompound,
1804 in long theMinNbFaces,
1805 in long theMaxNbFaces);
1808 * Find block, containing the given point inside its volume or on boundary.
1809 * \param theCompound Compound, to find block in.
1810 * \param thePoint Point, close to the desired block. If the point lays on
1811 * boundary between some blocks, we return block with nearest center.
1812 * \return New GEOM_Object, containing the found block.
1814 GEOM_Object GetBlockNearPoint (in GEOM_Object theCompound,
1815 in GEOM_Object thePoint);
1818 * Find block, containing all the elements, passed as the parts, or maximum quantity of them.
1819 * \param theCompound Compound, to find block in.
1820 * \param theParts List of faces and/or edges and/or vertices to be parts of the found block.
1821 * \return New GEOM_Object, containing the found block.
1823 GEOM_Object GetBlockByParts (in GEOM_Object theCompound,
1824 in ListOfGO theParts);
1827 * Return all blocks, containing all the elements, passed as the parts.
1828 * \param theCompound Compound, to find blocks in.
1829 * \param theParts List of faces and/or edges and/or vertices to be parts of the found blocks.
1830 * \return List of GEOM_Objects, containing the found blocks.
1832 ListOfGO GetBlocksByParts (in GEOM_Object theCompound,
1833 in ListOfGO theParts);
1836 * Operations on blocks with gluing of result
1840 * Multi-transformate block and glue the result.
1841 * Transformation is defined so, as to superpose theDirFace1 with theDirFace2.
1842 * \param theBlock Hexahedral solid to be multi-transformed.
1843 * \param theDirFace1 First direction face global index.
1844 * \param theDirFace2 Second direction face global index.
1845 * \param theNbTimes Quantity of transformations to be done.
1846 * \note Global index of sub-shape can be obtained, using method
1847 * <VAR>GEOM_IShapesOperations.GetSubShapeIndex()</VAR>.
1848 * \return New GEOM_Object, containing the result shape.
1850 GEOM_Object MakeMultiTransformation1D (in GEOM_Object theBlock,
1851 in long theDirFace1,
1852 in long theDirFace2,
1853 in long theNbTimes);
1856 * Multi-transformate block and glue the result.
1857 * \param theBlock Hexahedral solid to be multi-transformed.
1858 * \param theDirFace1U,theDirFace2U Direction faces for the first transformation.
1859 * \param theDirFace1V,theDirFace2V Direction faces for the second transformation.
1860 * \param theNbTimesU,theNbTimesV Quantity of transformations to be done.
1861 * \return New GEOM_Object, containing the result shape.
1863 GEOM_Object MakeMultiTransformation2D (in GEOM_Object theBlock,
1864 in long theDirFace1U,
1865 in long theDirFace2U,
1866 in long theNbTimesU,
1867 in long theDirFace1V,
1868 in long theDirFace2V,
1869 in long theNbTimesV);
1872 * Special operation - propagation
1876 * Build all possible propagation groups.
1877 * Propagation group is a set of all edges, opposite to one (main)
1878 * edge of this group directly or through other opposite edges.
1879 * Notion of Opposite Edge make sence only on quadrangle face.
1880 * \param theShape Shape to build propagation groups on.
1881 * \return List of GEOM_Objects, each of them is a propagation group.
1883 ListOfGO Propagate (in GEOM_Object theShape);
1887 * GEOM_IBooleanOperations: Interface for boolean operations (Cut, Fuse, Common)
1889 interface GEOM_IBooleanOperations : GEOM_IOperations
1892 * Perform one of boolean operations on two given shapes.
1893 * \param theShape1 First argument for boolean operation.
1894 * \param theShape2 Second argument for boolean operation.
1895 * \param theOperation Indicates the operation to be done:
1896 * 1 - Common, 2 - Cut, 3 - Fuse, 4 - Section.
1897 * \return New GEOM_Object, containing the result shape.
1899 GEOM_Object MakeBoolean (in GEOM_Object theShape1,
1900 in GEOM_Object theShape2,
1901 in long theOperation);
1904 * Perform partition operation.
1905 * \param theShapes Shapes to be intersected.
1906 * \param theTools Shapes to intersect theShapes.
1907 * \note Each compound from ListShapes and ListTools will be exploded in order
1908 * to avoid possible intersection between shapes from this compound.
1909 * \param theLimit Type of resulting shapes (corresponding to TopAbs_ShapeEnum).
1910 # \param KeepNonlimitShapes: if this parameter == 0 - only shapes with
1911 # type <= Limit are kept in the result,
1912 # else - shapes with type > Limit are kept
1913 # also (if they exist)
1915 * After implementation new version of PartitionAlgo (October 2006)
1916 * other parameters are ignored by current functionality. They are kept
1917 * in this function only for supporting old versions.
1918 * Ignored parameters:
1919 * \param theKeepInside Shapes, outside which the results will be deleted.
1920 * Each shape from theKeepInside must belong to theShapes also.
1921 * \param theRemoveInside Shapes, inside which the results will be deleted.
1922 * Each shape from theRemoveInside must belong to theShapes also.
1923 * \param theRemoveWebs If TRUE, perform Glue 3D algorithm.
1924 * \param theMaterials Material indices for each shape. Make sence, only if theRemoveWebs is TRUE.
1926 * \return New GEOM_Object, containing the result shapes.
1928 GEOM_Object MakePartition (in ListOfGO theShapes,
1929 in ListOfGO theTools,
1930 in ListOfGO theKeepInside,
1931 in ListOfGO theRemoveInside,
1933 in boolean theRemoveWebs,
1934 in ListOfLong theMaterials,
1935 in short theKeepNonlimitShapes);
1938 * Perform partition operation.
1939 * This method may be usefull if it is needed to make a partition for
1940 * a compound containing nonintersected shapes. Performance will be better
1941 * since intersection between shapes from compound is not performed.
1943 * Description of all parameters as in previous method MakePartition()
1945 * \note Passed compounds (via ListShapes or via ListTools)
1946 * have to consist of nonintersecting shapes.
1948 * \return New GEOM_Object, containing the result shapes.
1950 GEOM_Object MakePartitionNonSelfIntersectedShape (in ListOfGO theShapes,
1951 in ListOfGO theTools,
1952 in ListOfGO theKeepInside,
1953 in ListOfGO theRemoveInside,
1955 in boolean theRemoveWebs,
1956 in ListOfLong theMaterials,
1957 in short theKeepNonlimitShapes);
1960 * Perform partition of the Shape with the Plane
1961 * \param theShape Shape to be intersected.
1962 * \param thePlane Tool shape, to intersect theShape.
1963 * \return New GEOM_Object, containing the result shape.
1965 GEOM_Object MakeHalfPartition (in GEOM_Object theShape,
1966 in GEOM_Object thePlane);
1970 * GEOM_ICurvesOperations: Interface for curves creation.
1971 * Polyline, Circle, Spline (Bezier and Interpolation)
1973 interface GEOM_ICurvesOperations : GEOM_IOperations
1976 * Create a circle with given center, normal vector and radius.
1977 * \param thePnt Circle center.
1978 * \param theVec Vector, normal to the plane of the circle.
1979 * \param theR Circle radius.
1980 * \return New GEOM_Object, containing the created circle.
1982 GEOM_Object MakeCirclePntVecR (in GEOM_Object thePnt,
1983 in GEOM_Object theVec,
1986 * Create a circle, passing through three given points
1987 * \param thePnt1,thePnt2,thePnt3 Points, defining the circle.
1988 * \return New GEOM_Object, containing the created circle.
1990 GEOM_Object MakeCircleThreePnt (in GEOM_Object thePnt1,
1991 in GEOM_Object thePnt2,
1992 in GEOM_Object thePnt3);
1994 * Create a circle with given center, with a radius equals the distance from center to Point1
1995 * and on a plane defined by all of three points.
1996 * \param thePnt1,thePnt2,thePnt3 Points, defining the circle.
1997 * \return New GEOM_Object, containing the created circle.
1999 GEOM_Object MakeCircleCenter2Pnt (in GEOM_Object thePnt1,
2000 in GEOM_Object thePnt2,
2001 in GEOM_Object thePnt3);
2003 * Create an ellipse with given center, normal vector and radiuses.
2004 * \param thePnt Ellipse center.
2005 * \param theVec Vector, normal to the plane of the ellipse.
2006 * \param theRMajor Major ellipse radius.
2007 * \param theRMinor Minor ellipse radius.
2008 * \return New GEOM_Object, containing the created ellipse.
2010 GEOM_Object MakeEllipse (in GEOM_Object thePnt,
2011 in GEOM_Object theVec,
2012 in double theRMajor,
2013 in double theRMinor);
2016 * Create an arc of circle, passing through three given points.
2017 * \param thePnt1 Start point of the arc.
2018 * \param thePnt2 Middle point of the arc.
2019 * \param thePnt3 End point of the arc.
2020 * \return New GEOM_Object, containing the created arc.
2022 GEOM_Object MakeArc (in GEOM_Object thePnt1,
2023 in GEOM_Object thePnt2,
2024 in GEOM_Object thePnt3);
2027 * Create an arc of circle of center C from one point to another
2028 * \param theCenter Center point of the arc.
2029 * \param thePnt1 Start point of the arc.
2030 * \param thePnt2 End point of the arc.
2031 * \param theSense Orientation of the arc
2032 * \return New GEOM_Object, containing the created arc.
2034 GEOM_Object MakeArcCenter (in GEOM_Object theCenter,
2035 in GEOM_Object thePnt1,
2036 in GEOM_Object thePnt2,
2037 in boolean theSense);
2041 * Create a polyline on the set of points.
2042 * \param thePoints Sequence of points for the polyline.
2043 * \return New GEOM_Object, containing the created polyline.
2045 GEOM_Object MakePolyline (in ListOfGO thePoints);
2048 * Create bezier curve on the set of points.
2049 * \param thePoints Sequence of points for the bezier curve.
2050 * \return New GEOM_Object, containing the created bezier curve.
2052 GEOM_Object MakeSplineBezier (in ListOfGO thePoints);
2055 * Create B-Spline curve on the set of points.
2056 * \param thePoints Sequence of points for the B-Spline curve.
2057 * \return New GEOM_Object, containing the created B-Spline curve.
2059 GEOM_Object MakeSplineInterpolation (in ListOfGO thePoints);
2062 * Create a sketcher (wire or face), following the textual description,
2063 * passed through \a theCommand argument. \n
2064 * Edges of the resulting wire or face will be arcs of circles and/or linear segments. \n
2065 * Format of the description string have to be the following:
2067 * "Sketcher[:F x1 y1]:CMD[:CMD[:CMD...]]"
2070 * - x1, y1 are coordinates of the first sketcher point (zero by default),
2072 * - "R angle" : Set the direction by angle
2073 * - "D dx dy" : Set the direction by DX & DY
2076 * - "TT x y" : Create segment by point at X & Y
2077 * - "T dx dy" : Create segment by point with DX & DY
2078 * - "L length" : Create segment by direction & Length
2079 * - "IX x" : Create segment by direction & Intersect. X
2080 * - "IY y" : Create segment by direction & Intersect. Y
2083 * - "C radius length" : Create arc by direction, radius and length(in degree)
2086 * - "WW" : Close Wire (to finish)
2087 * - "WF" : Close Wire and build face (to finish)
2089 * \param theCommand String, defining the sketcher in local
2090 * coordinates of the working plane.
2091 * \param theWorkingPlane Nine double values, defining origin,
2092 * OZ and OX directions of the working plane.
2093 * \return New GEOM_Object, containing the created wire.
2095 GEOM_Object MakeSketcher (in string theCommand, in ListOfDouble theWorkingPlane);
2098 * Create a sketcher (wire or face), following the textual description,
2099 * passed through \a theCommand argument. \n
2100 * For format of the description string see the previous method.\n
2101 * \param theCommand String, defining the sketcher in local
2102 * coordinates of the working plane.
2103 * \param theWorkingPlane Planar Face or LCS(Marker) of the working plane.
2104 * \return New GEOM_Object, containing the created wire.
2106 GEOM_Object MakeSketcherOnPlane (in string theCommand, in GEOM_Object theWorkingPlane);
2110 * GEOM_ILocalOperations: Interface for fillet and chamfer creation.
2112 interface GEOM_ILocalOperations : GEOM_IOperations
2115 * Perform a fillet on all edges of the given shape.
2116 * \param theShape Shape, to perform fillet on.
2117 * \param theR Fillet radius.
2118 * \return New GEOM_Object, containing the result shape.
2120 GEOM_Object MakeFilletAll (in GEOM_Object theShape,
2124 * Perform a fillet on the specified edges of the given shape
2125 * \param theShape Shape, to perform fillet on.
2126 * \param theR Fillet radius.
2127 * \param theEdges Global indices of edges to perform fillet on.
2128 * \note Global index of sub-shape can be obtained, using method
2129 * <VAR>GEOM_IShapesOperations.GetSubShapeIndex()</VAR>.
2130 * \return New GEOM_Object, containing the result shape.
2132 GEOM_Object MakeFilletEdges (in GEOM_Object theShape,
2134 in ListOfLong theEdges);
2135 GEOM_Object MakeFilletEdgesR1R2 (in GEOM_Object theShape,
2138 in ListOfLong theEdges);
2141 * Perform a fillet on all edges of the specified faces of the given shape.
2142 * \param theShape Shape, to perform fillet on.
2143 * \param theR Fillet radius.
2144 * \param theFaces Global indices of faces to perform fillet on.
2145 * \note Global index of sub-shape can be obtained, using method
2146 * <VAR>GEOM_IShapesOperations.GetSubShapeIndex()</VAR>.
2147 * \return New GEOM_Object, containing the result shape.
2149 GEOM_Object MakeFilletFaces (in GEOM_Object theShape,
2151 in ListOfLong theFaces);
2152 GEOM_Object MakeFilletFacesR1R2 (in GEOM_Object theShape,
2155 in ListOfLong theFaces);
2158 * Perform a symmetric chamfer on all edges of the given shape.
2159 * \param theShape Shape, to perform chamfer on.
2160 * \param theD Chamfer size along each face.
2161 * \return New GEOM_Object, containing the result shape.
2163 GEOM_Object MakeChamferAll (in GEOM_Object theShape,
2167 * Perform a chamfer on edges, common to the specified faces.
2168 * with distance D1 on the Face1
2169 * \param theShape Shape, to perform chamfer on.
2170 * \param theD1 Chamfer size along \a theFace1.
2171 * \param theD2 Chamfer size along \a theFace2.
2172 * \param theFace1,theFace2 Global indices of two faces of \a theShape.
2173 * \note Global index of sub-shape can be obtained, using method
2174 * <VAR>GEOM_IShapesOperations.GetSubShapeIndex()</VAR>.
2175 * \return New GEOM_Object, containing the result shape.
2177 GEOM_Object MakeChamferEdge (in GEOM_Object theShape,
2178 in double theD1, in double theD2,
2179 in long theFace1, in long theFace2);
2181 * The Same but with params theD = Chamfer Lenght
2182 * and theAngle = Chamfer Angle (Angle in radians)
2184 GEOM_Object MakeChamferEdgeAD (in GEOM_Object theShape,
2185 in double theD, in double theAngle,
2186 in long theFace1, in long theFace2);
2189 * Perform a chamfer on all edges of the specified faces.
2190 * with distance D1 on the first specified face (if several for one edge)
2191 * \param theShape Shape, to perform chamfer on.
2192 * \param theD1 Chamfer size along face from \a theFaces. If both faces,
2193 * connected to the edge, are in \a theFaces, \a theD1
2194 * will be get along face, which is nearer to \a theFaces beginning.
2195 * \param theD2 Chamfer size along another of two faces, connected to the edge.
2196 * \param theFaces Sequence of global indices of faces of \a theShape.
2197 * \note Global index of sub-shape can be obtained, using method
2198 * <VAR>GEOM_IShapesOperations.GetSubShapeIndex()</VAR>.
2199 * \return New GEOM_Object, containing the result shape.
2201 GEOM_Object MakeChamferFaces (in GEOM_Object theShape,
2202 in double theD1, in double theD2,
2203 in ListOfLong theFaces);
2205 * The Same but with params theD = Chamfer Lenght
2206 * and theAngle = Chamfer Angle (Angle in radians)
2208 GEOM_Object MakeChamferFacesAD (in GEOM_Object theShape,
2209 in double theD, in double theAngle,
2210 in ListOfLong theFaces);
2213 * Perform a chamfer on edges,
2214 * with distance D1 on the first specified face (if several for one edge)
2215 * \param theShape Shape, to perform chamfer on.
2216 * \param theD1 theD2 Chamfer size
2217 * \param theEdges Sequence of edges of \a theShape.
2218 * \return New GEOM_Object, containing the result shape.
2220 GEOM_Object MakeChamferEdges (in GEOM_Object theShape,
2221 in double theD1, in double theD2,
2222 in ListOfLong theEdges);
2224 * The Same but with params theD = Chamfer Lenght
2225 * and theAngle = Chamfer Angle (Angle in radians)
2227 GEOM_Object MakeChamferEdgesAD (in GEOM_Object theShape,
2228 in double theD, in double theAngle,
2229 in ListOfLong theEdges);
2232 * Perform an Archimde operation on the given shape with given parameters.
2233 * The object presenting the resulting face is returned
2234 * \param theShape Shape to be put in water.
2235 * \param theWeight Weight og the shape.
2236 * \param theWaterDensity Density of the water.
2237 * \param theMeshDeflection Deflection od the mesh, using to compute the section.
2238 * \return New GEOM_Object, containing a section of \a theShape
2239 * by a plane, corresponding to water level.
2241 GEOM_Object MakeArchimede (in GEOM_Object theShape,
2242 in double theWeight,
2243 in double theWaterDensity,
2244 in double theMeshDeflection);
2247 * Duplicates <VAR>GEOM_IShapesOperations.GetSubShapeIndex()</VAR>.
2248 * Present here only for compatibility.
2250 long GetSubShapeIndex (in GEOM_Object theShape, in GEOM_Object theSubShape);
2254 * GEOM_IHealingOperations: Interface for shape healing operations.
2255 * Shape Processing, SuppressFaces, etc.
2257 interface GEOM_IHealingOperations : GEOM_IOperations
2260 * Apply a sequence of Shape Healing operators to the given object.
2261 * \param theShapes Shape to be processed.
2262 * \param theOperators List of names of operators ("FixShape", "SplitClosedFaces", etc.).
2263 * \param theParameters List of names of parameters
2264 * ("FixShape.Tolerance3d", "SplitClosedFaces.NbSplitPoints", etc.).
2265 * \param theValues List of values of parameters, in the same order
2266 * as parameters are listed in \a theParameters list.
2267 * \return New GEOM_Object, containing processed shape.
2269 GEOM_Object ProcessShape (in GEOM_Object theShapes,
2270 in string_array theOperators,
2271 in string_array theParameters,
2272 in string_array theValues);
2275 * Get default sequence of operators, their parameters and parameters' values
2276 * of Shape Process operation. In the current implementation the defaults are
2277 * read from the file pointed by CSF_ShHealingDefaults environmental variable.
2278 * \param theOperators Output. Default list of names of operators.
2279 * \param theParameters Output. Default list of names of parameters.
2280 * \param theValues Output. List of default values of parameters, in the same order
2281 * as parameters are listed in \a theParameters list.
2283 void GetShapeProcessParameters (out string_array theOperators,
2284 out string_array theParameters,
2285 out string_array theValues);
2287 * Get parameters and parameters' values for the given Shape Process operation.
2288 * In the current implementation the defaults are
2289 * read from the file pointed by CSF_ShHealingDefaults environmental variable.
2290 * \param theOperator Input. The operator's name.
2291 * \param theParameters Output. Default list of names of parameters.
2292 * \param theValues Output. List of default values of parameters, in the same order
2293 * as parameters are listed in \a theParameters list.
2295 void GetOperatorParameters (in string theOperator,
2296 out string_array theParameters,
2297 out string_array theValues);
2300 * Remove faces from the given object (shape).
2301 * \param theObject Shape to be processed.
2302 * \param theFaces Indices of faces to be removed, if EMPTY then the method
2303 * removes ALL faces of the given object.
2304 * \return New GEOM_Object, containing processed shape.
2306 GEOM_Object SuppressFaces (in GEOM_Object theObject, in short_array theFaces);
2309 * Close an open wire.
2310 * \param theObject Shape to be processed.
2311 * \param theWires Indexes of edge(s) and wire(s) to be closed within <VAR>theObject</VAR>'s shape,
2312 * if -1, then theObject itself is a wire.
2313 * \param isCommonVertex If TRUE : closure by creation of a common vertex,
2314 * If FALS : closure by creation of an edge between ends.
2315 * \return New GEOM_Object, containing processed shape.
2317 GEOM_Object CloseContour (in GEOM_Object theObject, in short_array theWires,
2318 in boolean isCommonVertex);
2321 * Remove internal wires and edges from the given object (face).
2322 * \param theObject Shape to be processed.
2323 * \param theWires Indices of wires to be removed, if EMPTY then the method
2324 * removes ALL internal wires of the given object.
2325 * \return New GEOM_Object, containing processed shape.
2327 GEOM_Object RemoveIntWires (in GEOM_Object theObject, in short_array theWires);
2330 * Remove internal closed contours (holes) from the given object.
2331 * \param theObject Shape to be processed.
2332 * \param theWires Indices of wires to be removed, if EMPTY then the method
2333 * removes ALL internal holes of the given object
2334 * \return New GEOM_Object, containing processed shape.
2336 GEOM_Object FillHoles (in GEOM_Object theObject, in short_array theWires);
2339 * Sewing of the given object.
2340 * \param theObject Shape to be processed.
2341 * \param theTolerance Required tolerance value.
2342 * \return New GEOM_Object, containing processed shape.
2344 GEOM_Object Sew (in GEOM_Object theObject, in double theTolerance);
2347 * Addition of a point to a given edge object.
2348 * \param theObject Shape to be processed.
2349 * \param theEdgeIndex Index of edge to be divided within theObject's shape,
2350 * if -1, then theObject itself is the edge.
2351 * \param theValue Value of parameter on edge or length parameter,
2352 * depending on \a isByParameter.
2353 * \param isByParameter If TRUE : \a theValue is treated as a curve parameter [0..1],
2354 * if FALSE : \a theValue is treated as a length parameter [0..1]
2355 * \return New GEOM_Object, containing processed shape.
2357 GEOM_Object DivideEdge (in GEOM_Object theObject, in short theEdgeIndex,
2358 in double theValue, in boolean isByParameter);
2361 * Get a list of wires (wrapped in GEOM_Object-s),
2362 * that constitute a free boundary of the given shape.
2363 * \param theObject Shape to get free boundary of.
2364 * \param theClosedWires Output. Closed wires on the free boundary of the given shape.
2365 * \param theOpenWires Output. Open wires on the free boundary of the given shape.
2366 * \return FALSE, if an error(s) occured during the method execution.
2368 boolean GetFreeBoundary (in GEOM_Object theObject,
2369 out ListOfGO theClosedWires,
2370 out ListOfGO theOpenWires);
2373 * Change orientation of the given object.
2374 * \param theObject Shape to be processed.
2375 * \return New GEOM_Object, containing processed shape.
2377 GEOM_Object ChangeOrientation (in GEOM_Object theObject);
2378 GEOM_Object ChangeOrientationCopy (in GEOM_Object theObject);
2383 * GEOM_IInsertOperations: Interface for shape insert operations (like copy, import).
2386 interface GEOM_IInsertOperations : GEOM_IOperations
2389 * Create a copy of the given object
2391 GEOM_Object MakeCopy (in GEOM_Object theOriginal);
2394 * Export the given shape into a file with given name.
2395 * \param theObject Shape to be stored in the file.
2396 * \param theFileName Name of the file to store the given shape in.
2397 * \param theFormatName Specify format for the shape storage.
2398 * Available formats can be obtained with <VAR>ImportTranslators()</VAR> method.
2400 void Export (in GEOM_Object theObject, in string theFileName, in string theFormatName);
2403 * Import a shape from the BRep or IGES or STEP file
2404 * (depends on given format) with given name.
2405 * \param theFileName The file, containing the shape.
2406 * \param theFormatName Specify format for the file reading.
2407 * Available formats can be obtained with <VAR>ImportTranslators()</VAR> method.
2408 * \return New GEOM_Object, containing the imported shape.
2410 GEOM_Object Import (in string theFileName, in string theFormatName);
2413 * Get the supported import formats and corresponding patterns for File dialog.
2414 * \param theFormats Output. List of formats, available for import.
2415 * \param thePatterns Output. List of file patterns, corresponding to available formats.
2416 * \return Returns available formats and patterns through the arguments.
2418 void ImportTranslators (out string_array theFormats,
2419 out string_array thePatterns);
2422 * Get the supported export formats and corresponding patterns for File dialog.
2423 * \param theFormats Output. List of formats, available for export.
2424 * \param thePatterns Output. List of file patterns, corresponding to available formats.
2425 * \return Returns available formats and patterns through the arguments.
2427 void ExportTranslators (out string_array theFormats,
2428 out string_array thePatterns);
2432 * GEOM_IKindOfShape: namespace for shape_kind enumeration.
2434 interface GEOM_IKindOfShape
2444 SPHERE, // full sphere
2445 CYLINDER, // cylinder
2446 BOX, // box with faces, parallel to global coordinate planes
2447 ROTATED_BOX, // other box
2448 TORUS, // full torus
2450 POLYHEDRON, // solid, bounded by polygons
2451 SOLID, // other solid
2453 SPHERE2D, // spherical face (closed)
2454 CYLINDER2D, // cylindrical face with defined height
2455 TORUS2D, // toroidal face (closed)
2456 CONE2D, // conical face with defined height
2457 DISK_CIRCLE, // planar, bounded by circle
2458 DISK_ELLIPSE, // planar, bounded by ellipse
2459 POLYGON, // planar, bounded by segments
2460 PLANE, // infinite planar
2461 PLANAR, // other planar
2464 CIRCLE, // full circle
2465 ARC_CIRCLE, // arc of circle
2466 ELLIPSE, // full ellipse
2467 ARC_ELLIPSE, // arc of ellipse
2468 LINE, // infinite segment
2478 * GEOM_IMeasureOperations: Interface for measurement (distance, whatis) and
2479 * properties calculation (like Centre of Mass, Inertia, etc.).
2482 interface GEOM_IMeasureOperations : GEOM_IOperations
2485 * Get kind of theShape.
2486 * \param theShape Shape to get a kind of.
2487 * \param theIntegers Output. Integer and enumerated shape's parameters
2488 * (kind of surface, closed/unclosed, number of edges, etc.)
2489 * \param theDoubles Output. Double shape's parameters (coordinates, dimensions, etc.)
2490 * \note Concrete meaning of each value, returned via \a theIntegers
2491 * or \a theDoubles list depends on the kind of the shape.
2492 * \return Returns a kind of shape in terms of <VAR>GEOM_IKindOfShape.shape_kind</VAR> enumeration.
2494 //short KindOfShape (in GEOM_Object theShape,
2495 GEOM_IKindOfShape::shape_kind KindOfShape (in GEOM_Object theShape,
2496 out ListOfLong theIntegers,
2497 out ListOfDouble theDoubles);
2500 * Get position (LCS) of theShape.
2501 * \param theShape Shape to calculate position of.
2502 * \param Ox,Oy,Oz Output. Coordinates of shape's location origin.
2503 * Origin of the LCS is situated at the shape's center of mass.
2504 * \param Zx,Zy,Zz Output. Coordinates of shape's location normal(main) direction.
2505 * \param Xx,Xy,Xz Output. Coordinates of shape's location X direction.
2506 * Axes of the LCS are obtained from shape's location or,
2507 * if the shape is a planar face, from position of its plane.
2508 * \return Returns position of the shape through the last nine arguments.
2510 void GetPosition (in GEOM_Object theShape,
2511 out double Ox, out double Oy, out double Oz,
2512 out double Zx, out double Zy, out double Zz,
2513 out double Xx, out double Xy, out double Xz);
2516 * Get summarized length of all wires,
2517 * area of surface and volume of the given shape.
2518 * \param theShape Shape to define properties of.
2519 * \param theLength Output. Summarized length of all wires of the given shape.
2520 * \param theSurfArea Output. Area of surface of the given shape.
2521 * \param theVolume Output. Volume of the given shape.
2522 * \return Returns shape properties through the last three arguments.
2524 void GetBasicProperties (in GEOM_Object theShape,
2525 out double theLength,
2526 out double theSurfArea,
2527 out double theVolume);
2530 * Get a point, situated at the centre of mass of theShape.
2531 * \param theShape Shape to define centre of mass of.
2532 * \return New GEOM_Object, containing the created point.
2534 GEOM_Object GetCentreOfMass (in GEOM_Object theShape);
2537 * Get a vector, representing the normal of theFace.
2538 * If the face is not planar, theOptionalPoint is obligatory.
2539 * \param theFace Shape (face) to define the normal of.
2540 * \param theOptionalPoint Shape (point) to define the normal at.
2541 * Can be NULL in case of planar face.
2542 * \return New GEOM_Object, containing the created normal vector.
2544 GEOM_Object GetNormal (in GEOM_Object theFace,
2545 in GEOM_Object theOptionalPoint);
2548 * Get inertia matrix and moments of inertia of theShape.
2549 * \param theShape Shape to calculate inertia of.
2550 * \param I(1-3)(1-3) Output. Components of the inertia matrix of the given shape.
2551 * \param Ix,Iy,Iz Output. Moments of inertia of the given shape.
2552 * \return Returns inertia through the last twelve arguments.
2554 void GetInertia (in GEOM_Object theShape,
2555 out double I11, out double I12, out double I13,
2556 out double I21, out double I22, out double I23,
2557 out double I31, out double I32, out double I33,
2558 out double Ix , out double Iy , out double Iz);
2561 * Get parameters of bounding box of the given shape
2562 * \param theShape Shape to obtain bounding box of.
2563 * \param Xmin,Xmax Output. Limits of shape along OX axis.
2564 * \param Ymin,Ymax Output. Limits of shape along OY axis.
2565 * \param Zmin,Zmax Output. Limits of shape along OZ axis.
2566 * \return Returns parameters of bounding box through the last six arguments.
2568 void GetBoundingBox (in GEOM_Object theShape,
2569 out double Xmin, out double Xmax,
2570 out double Ymin, out double Ymax,
2571 out double Zmin, out double Zmax);
2574 * Get min and max tolerances of sub-shapes of theShape
2575 * \param theShape Shape, to get tolerances of.
2576 * \param FaceMin,FaceMax Output. Min and max tolerances of the faces.
2577 * \param EdgeMin,EdgeMax Output. Min and max tolerances of the edges.
2578 * \param VertMin,VertMax Output. Min and max tolerances of the vertices.
2579 * \return Returns shape tolerances through the last six arguments.
2581 void GetTolerance (in GEOM_Object theShape,
2582 out double FaceMin, out double FaceMax,
2583 out double EdgeMin, out double EdgeMax,
2584 out double VertMin, out double VertMax);
2587 * Check a topology of the given shape.
2588 * \param theShape Shape to check validity of.
2589 * \param theDescription Output. Description of problems in the shape, if they are.
2590 * \return TRUE, if the shape "seems to be valid" from the topological point of view.
2592 boolean CheckShape (in GEOM_Object theShape,
2593 out string theDescription);
2596 * Check a topology and a geometry of the given shape.
2597 * \param theShape Shape to check validity of.
2598 * \param theDescription Output. Description of problems in the shape, if they are.
2599 * \return TRUE, if the shape "seems to be valid".
2601 boolean CheckShapeWithGeometry (in GEOM_Object theShape,
2602 out string theDescription);
2605 * Obtain description of the given shape
2606 * \param theShape Shape to be described.
2607 * \return Description of the given shape.
2609 string WhatIs (in GEOM_Object theShape);
2612 * Get minimal distance between the given shapes.
2613 * \param theShape1,theShape2 Shapes to find minimal distance between.
2614 * \param X1,Y1,Z1 Output. Coordinates of point on theShape1, nearest to theShape2.
2615 * \param X2,Y2,Z2 Output. Coordinates of point on theShape2, nearest to theShape1.
2616 * \return Value of the minimal distance between the given shapes.
2618 double GetMinDistance (in GEOM_Object theShape1, in GEOM_Object theShape2,
2619 out double X1, out double Y1, out double Z1,
2620 out double X2, out double Y2, out double Z2);
2623 * Get angle between the given lines or linear edges.
2624 * \param theShape1,theShape2 Shapes to find angle between. Lines or linear edges.
2625 * \return Value of the angle between the given shapes.
2627 double GetAngle (in GEOM_Object theShape1, in GEOM_Object theShape2);
2630 * Get point coordinates
2632 void PointCoordinates (in GEOM_Object theShape, out double X, out double Y, out double Z);
2635 * Get radius of curvature of curve in the point determinated by param
2636 * \param theShape - curve.
2637 * \param theParam - parameter on curve
2638 * \return Value of curvature.
2640 double CurveCurvatureByParam (in GEOM_Object theShape, in double theParam);
2643 * Get radius of curvature of curve in the given point
2644 * \param theShape - curve.
2645 * \param thePoint - point
2646 * \return Value of curvature.
2648 double CurveCurvatureByPoint (in GEOM_Object theShape, in GEOM_Object thePoint);
2651 * Get max radius of curvature of surface in the point determinated by params
2652 * \param theShape - surface.
2653 * \param theUParam - U-parameter on surface
2654 * \param theVParam - V-parameter on surface
2655 * \return Value of curvature.
2657 double MaxSurfaceCurvatureByParam (in GEOM_Object theShape, in double theUParam,
2658 in double theVParam);
2661 * Get max radius of curvature of surface in the given point
2662 * \param theShape - surface.
2663 * \param thePoint - point
2664 * \return Value of curvature.
2666 double MaxSurfaceCurvatureByPoint (in GEOM_Object theShape, in GEOM_Object thePoint);
2669 * Get min radius of curvature of surface in the point determinated by params
2670 * \param theShape - surface.
2671 * \param theUParam - U-parameter on surface
2672 * \param theVParam - V-parameter on surface
2673 * \return Value of curvature.
2675 double MinSurfaceCurvatureByParam (in GEOM_Object theShape, in double theUParam,
2676 in double theVParam);
2679 * Get min radius of curvature of surface in the given point
2680 * \param theShape - surface.
2681 * \param thePoint - point
2682 * \return Value of curvature.
2684 double MinSurfaceCurvatureByPoint (in GEOM_Object theShape, in GEOM_Object thePoint);
2690 * GEOM_IGroupOperations: Interface for groups creation.
2692 interface GEOM_IGroupOperations : GEOM_IOperations
2695 * Creates a new group which will store sub shapes of theMainShape
2696 * \param theMainShape is a GEOM object on which the group is selected
2697 * \param theShapeType defines a shape type of the group
2698 * \return a newly created GEOM group
2700 GEOM_Object CreateGroup (in GEOM_Object theMainShape, in long theShapeType);
2703 * Adds a sub object with ID theSubShapeId to the group
2704 * \param theGroup is a GEOM group to which the new sub shape is added
2705 * \param theSubShapeId is a sub shape ID in the main object.
2706 * \note Use method <VAR>GEOM_IShapesOperations.GetSubShapeIndex()</VAR> to get an ID by the sub shape
2708 void AddObject (in GEOM_Object theGroup, in long theSubShapeId);
2711 * Removes a sub object with ID \a theSubShapeId from the group
2712 * \param theGroup is a GEOM group from which the sub shape is removed.
2713 * \param theSubShapeId is a sub shape ID in the main object.
2714 * \note Use method <VAR>GEOM_IShapesOperations.GetSubShapeIndex()</VAR> to get an ID by the sub shape
2716 void RemoveObject (in GEOM_Object theGroup, in long theSubShapeId);
2719 * Adds to the group all the given shapes. No errors, if some shapes are alredy included.
2720 * \param theGroup is a GEOM group to which the new sub shapes are added.
2721 * \param theSubShapes is a list of sub shapes to be added.
2723 void UnionList (in GEOM_Object theGroup, in ListOfGO theSubShapes);
2726 * Removes from the group all the given shapes. No errors, if some shapes are not included.
2727 * \param theGroup is a GEOM group from which the sub-shapes are removed.
2728 * \param theSubShapes is a list of sub-shapes to be removed.
2730 void DifferenceList (in GEOM_Object theGroup, in ListOfGO theSubShapes);
2733 * Adds to the group all the given shapes. No errors, if some shapes are alredy included.
2734 * \param theGroup is a GEOM group to which the new sub shapes are added.
2735 * \param theSubShapes is a list of IDs of sub shapes to be added.
2737 void UnionIDs (in GEOM_Object theGroup, in ListOfLong theSubShapes);
2740 * Removes from the group all the given shapes. No errors, if some shapes are not included.
2741 * \param theGroup is a GEOM group from which the sub-shapes are removed.
2742 * \param theSubShapes is a list of IDs of sub-shapes to be removed.
2744 void DifferenceIDs (in GEOM_Object theGroup, in ListOfLong theSubShapes);
2747 * Returns a type of sub objects stored in the group
2748 * \param theGroup is a GEOM group which type is returned.
2750 long GetType (in GEOM_Object theGroup);
2753 * Returns a main shape associated with the group
2754 * \param theGroup is a GEOM group for which a main shape object is requested
2755 * \return a GEOM object which is a main shape for theGroup
2757 GEOM_Object GetMainShape (in GEOM_Object theGroup);
2760 * Returns a list of sub objects ID stored in the group
2761 * \param theGroup is a GEOM group for which a list of IDs is requested
2763 ListOfLong GetObjects (in GEOM_Object theGroup);
2768 * GEOM_Gen: Interface to access other GEOM interfaces.
2769 * Also contains some methods to access and manage GEOM objects.
2771 interface GEOM_Gen : Engines::Component,SALOMEDS::Driver
2774 * Undo/Redo Management
2777 void Undo (in long theStudyID);
2779 void Redo (in long theStudyID);
2782 * Publishing management
2783 * Adds in theStudy a object theObject under with a name theName,
2784 * if theFather is not NULL the object is placed under thFather's SObject.
2785 * Returns a SObject where theObject is placed
2787 SALOMEDS::SObject AddInStudy (in SALOMEDS::Study theStudy,
2788 in GEOM_Object theObject,
2790 in GEOM_Object theFather);
2793 * Publish sub-shapes, standing for arguments and sub-shapes of arguments
2794 * To be used from python scripts out of geompy.addToStudy (non-default usage)
2795 * \param theStudy the study, in which theObject is published already,
2796 * and in which the arguments will be published
2797 * \param theObject published GEOM object, arguments of which will be published
2798 * \param theArgs list of GEOM_Object, operation arguments to be published.
2799 * If this list is empty, all operation arguments will be published
2800 * \param theFindMethod method to search subshapes, corresponding to arguments and
2801 * their subshapes. Value from enumeration GEOM::find_shape_method.
2802 * \param theInheritFirstArg set properties of the first argument for \a theObject.
2803 * Do not publish subshapes in place of arguments, but only
2804 * in place of subshapes of the first argument,
2805 * because the whole shape corresponds to the first argument.
2806 * Mainly to be used after transformations, but it also can be
2807 * usefull after partition with one object shape, and some other
2808 * operations, where only the first argument has to be considered.
2809 * If theObject has only one argument shape, this flag is automatically
2810 * considered as True, not regarding really passed value.
2811 * \return True in case of success, False otherwise.
2813 boolean RestoreSubShapesO (in SALOMEDS::Study theStudy,
2814 in GEOM_Object theObject,
2815 in ListOfGO theArgs,
2816 in find_shape_method theFindMethod,
2817 in boolean theInheritFirstArg);
2820 * Publish sub-shapes, standing for arguments and sub-shapes of arguments
2821 * To be used from GUI and from geompy.addToStudy.
2822 * Work like the above method, but accepts study object theSObject instead of GEOM_Object.
2823 * \param theSObject study object, referencing GEOM object, arguments of which will be published
2825 boolean RestoreSubShapesSO (in SALOMEDS::Study theStudy,
2826 in SALOMEDS::SObject theSObject,
2827 in ListOfGO theArgs,
2828 in find_shape_method theFindMethod,
2829 in boolean theInheritFirstArg);
2832 * Methods to access interfaces for objects creation and transformation
2834 GEOM_IBasicOperations GetIBasicOperations (in long theStudyID) raises (SALOME::SALOME_Exception);
2835 GEOM_ITransformOperations GetITransformOperations(in long theStudyID) raises (SALOME::SALOME_Exception);
2836 GEOM_I3DPrimOperations GetI3DPrimOperations (in long theStudyID) raises (SALOME::SALOME_Exception);
2837 GEOM_IShapesOperations GetIShapesOperations (in long theStudyID) raises (SALOME::SALOME_Exception);
2838 GEOM_IBooleanOperations GetIBooleanOperations (in long theStudyID) raises (SALOME::SALOME_Exception);
2839 GEOM_ICurvesOperations GetICurvesOperations (in long theStudyID) raises (SALOME::SALOME_Exception);
2840 GEOM_ILocalOperations GetILocalOperations (in long theStudyID) raises (SALOME::SALOME_Exception);
2841 GEOM_IHealingOperations GetIHealingOperations (in long theStudyID) raises (SALOME::SALOME_Exception);
2842 GEOM_IInsertOperations GetIInsertOperations (in long theStudyID) raises (SALOME::SALOME_Exception);
2843 GEOM_IMeasureOperations GetIMeasureOperations (in long theStudyID) raises (SALOME::SALOME_Exception);
2844 GEOM_IBlocksOperations GetIBlocksOperations (in long theStudyID) raises (SALOME::SALOME_Exception);
2845 GEOM_IGroupOperations GetIGroupOperations (in long theStudyID) raises (SALOME::SALOME_Exception);
2848 * Objects Management
2852 * Removes the object from the GEOM component
2853 * \param theObject is a GEOM object to be removed
2855 void RemoveObject (in GEOM_Object theObject);
2858 * Returns an object defined by the study and its entry in the GEOM component
2859 * \param theStudyID is a SALOMEDS Study ID
2860 * \param theEntry is an entry of the requested GEOM object in the GEOM component
2861 * \note if the object has not previously been created a NULL GEOM object is returned
2863 GEOM_Object GetObject (in long theStudyID, in string theEntry);
2866 * Add a sub shape defined by indices in \a theIndices
2867 * (contains unique IDs of sub shapes inside theMainShape)
2868 * \note The sub shape GEOM_Objects can has ONLY ONE function.
2869 * Don't try to apply modification operations on them.
2870 * \note Internal method
2872 GEOM_Object AddSubShape (in GEOM_Object theMainShape, in ListOfLong theIndices);
2875 * GEOM object's IOR Management
2879 * Returns a GEOM Object defined by its IOR
2880 * \param theIOR a string containg an IOR of the requested GEOM object
2882 GEOM_Object GetIORFromString (in string theIOR);
2885 * Returns a string which contains an IOR of the GEOM object
2886 * \param theObject is a GEOM object which IOR is requested
2888 string GetStringFromIOR (in GEOM_Object theObject);
2891 * Returns a name with which a GEOM object was dumped into python script
2892 * \param theStudyEntry is an entry of the GEOM object in the study
2894 string GetDumpName (in string theStudyEntry);
2897 * Returns all names with which a GEOM objects was dumped
2898 * into python script to avoid the same names in SMESH script
2900 string_array GetAllDumpNames();