1 // Copyright (C) 2007-2008 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 // Lesser General Public License for more details.
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
22 // File : GEOM_Superv.idl
23 // Author : Lucien PIGNOLONI
25 #ifndef __GEOM_SUPERV__
26 #define __GEOM_SUPERV__
28 #include "GEOM_Gen.idl"
35 interface GEOM_Superv : Engines::Component,SALOMEDS::Driver
37 //-----------------------------------------------------------//
38 // Set current study ID //
39 //-----------------------------------------------------------//
40 void SetStudyID (in long theStudyID) ;
42 //-----------------------------------------------------------//
43 // Create ListOfGO and add items to it //
44 //-----------------------------------------------------------//
45 GEOM_List CreateListOfGO();
46 void AddItemToListOfGO( inout GEOM_List theList,
47 in GEOM_Object theObject);
49 //-----------------------------------------------------------//
50 // Create ListOfLong and add items to it //
51 //-----------------------------------------------------------//
52 GEOM_List CreateListOfLong();
53 void AddItemToListOfLong( inout GEOM_List theList,
56 //-----------------------------------------------------------//
57 // Create ListOfDouble and add items to it //
58 //-----------------------------------------------------------//
59 GEOM_List CreateListOfDouble();
60 void AddItemToListOfDouble( inout GEOM_List theList,
63 //-----------------------------------------------------------//
64 // Primitives Construction : BasicOperations //
65 //-----------------------------------------------------------//
66 GEOM_Object MakePointXYZ (in double theX,
69 GEOM_Object MakePointWithReference (in GEOM_Object theReference,
73 GEOM_Object MakePointOnCurve (in GEOM_Object theRefCurve,
74 in double theParameter) ;
76 GEOM_Object MakeTangentOnCurve (in GEOM_Object theRefCurve,
77 in double theParameter);
79 GEOM_Object MakeVectorDXDYDZ (in double theDX,
82 GEOM_Object MakeVectorTwoPnt (in GEOM_Object thePnt1,
83 in GEOM_Object thePnt2) ;
84 GEOM_Object MakeLineTwoPnt (in GEOM_Object thePnt1,
85 in GEOM_Object thePnt2) ;
86 GEOM_Object MakeLineTwoFaces (in GEOM_Object theFace1,
87 in GEOM_Object theFace2) ;
88 GEOM_Object MakePlaneThreePnt (in GEOM_Object thePnt1,
89 in GEOM_Object thePnt2,
90 in GEOM_Object thePnt3,
91 in double theTrimSize) ;
92 GEOM_Object MakePlanePntVec (in GEOM_Object thePnt,
93 in GEOM_Object theVec,
94 in double theTrimSize) ;
95 GEOM_Object MakePlaneFace (in GEOM_Object theFace,
96 in double theTrimSize) ;
97 GEOM_Object MakePlane2Vec (in GEOM_Object theVec1,
98 in GEOM_Object theVec2,
99 in double theTrimSize) ;
100 GEOM_Object MakePlaneLCS (in GEOM_Object theLCS,
101 in double theTrimSize,
102 in double theOrientation) ;
103 GEOM_Object MakeMarker (in double theOX , in double theOY , in double theOZ,
104 in double theXDX, in double theXDY, in double theXDZ,
105 in double theYDX, in double theYDY, in double theYDZ) ;
107 GEOM_Object MakeMarkerFromShape (in GEOM_Object theShape) ;
109 GEOM_Object MakeMarkerPntTwoVec (in GEOM_Object theOrigin, in GEOM_Object theXVec, in GEOM_Object theYVec) ;
112 * Create a tangent plane to specified face in the point with specified parameters.
113 * Values of parameters should be between 0. and 1.0
114 * \param theFace - face for which tangent plane shuold be built.
115 * \param theParameterU - value of parameter by U
116 * \param theParameterV - value of parameter Vthe
117 * \param theTrimSize - defines sizes of created face
118 * \return New GEOM_Object, containing the face built on tangent plane.
120 GEOM_Object MakeTangentPlaneOnFace(in GEOM_Object theFace,
121 in double theParameterU,
122 in double theParameterV,
123 in double theTrimSize);
125 //-----------------------------------------------------------//
126 // Primitives Construction : 3DPrimOperations //
127 //-----------------------------------------------------------//
128 GEOM_Object MakeBox (in double theX1,
134 GEOM_Object MakeBoxDXDYDZ (in double theDX,
137 GEOM_Object MakeBoxTwoPnt (in GEOM_Object thePnt1,
138 in GEOM_Object thePnt2) ;
139 GEOM_Object MakeFaceHW (in double theH,
141 in short theOrientation) ;
142 GEOM_Object MakeFaceObjHW (in GEOM_Object theObj,
145 GEOM_Object MakeDiskPntVecR (in GEOM_Object thePnt,
146 in GEOM_Object theVec,
148 GEOM_Object MakeDiskThreePnt (in GEOM_Object thePnt1,
149 in GEOM_Object thePnt2,
150 in GEOM_Object thePnt3) ;
151 GEOM_Object MakeDiskR (in double theR,
152 in short theOrientation) ;
153 GEOM_Object MakeCylinderPntVecRH (in GEOM_Object thePnt,
154 in GEOM_Object theAxis,
156 in double theHeight) ;
157 GEOM_Object MakeCylinderRH (in double theR,
159 GEOM_Object MakeSphere (in double theX,
162 in double theRadius) ;
163 GEOM_Object MakeSphereR (in double theR) ;
164 GEOM_Object MakeSpherePntR (in GEOM_Object thePnt,
166 GEOM_Object MakeTorusPntVecRR (in GEOM_Object thePnt,
167 in GEOM_Object theVec,
169 in double theRMinor) ;
170 GEOM_Object MakeTorusRR (in double theRMajor,
171 in double theRMinor) ;
172 GEOM_Object MakeConePntVecR1R2H (in GEOM_Object thePnt,
173 in GEOM_Object theAxis,
176 in double theHeight) ;
177 GEOM_Object MakeConeR1R2H (in double theR1,
179 in double theHeight) ;
180 GEOM_Object MakePrismVecH (in GEOM_Object theBase,
181 in GEOM_Object theVec,
183 GEOM_Object MakePrismVecH2Ways (in GEOM_Object theBase,
184 in GEOM_Object theVec,
186 GEOM_Object MakePrismTwoPnt (in GEOM_Object theBase,
187 in GEOM_Object thePoint1,
188 in GEOM_Object thePoint2) ;
189 GEOM_Object MakePrismTwoPnt2Ways (in GEOM_Object theBase,
190 in GEOM_Object thePoint1,
191 in GEOM_Object thePoint2) ;
192 GEOM_Object MakePipe (in GEOM_Object theBase,
193 in GEOM_Object thePath) ;
194 GEOM_Object MakeRevolutionAxisAngle (in GEOM_Object theBase,
195 in GEOM_Object theAxis,
196 in double theAngle) ;
197 GEOM_Object MakeRevolutionAxisAngle2Ways (in GEOM_Object theBase,
198 in GEOM_Object theAxis,
199 in double theAngle) ;
200 GEOM_Object MakeFilling (in GEOM_Object theShape,
201 in long theMinDeg, in long theMaxDeg,
202 in double theTol2D, in double theTol3D,
203 in long theNbIter, in boolean theApprox) ;
204 GEOM_Object MakeThruSections(in ListOfGO theSeqSections,
205 in boolean theModeSolid,
207 in boolean theRuled);
209 GEOM_Object MakePipeWithDifferentSections (in ListOfGO theSeqBases,
210 in ListOfGO theLocations,
211 in GEOM_Object thePath,
212 in boolean theWithContact ,
213 in boolean theWithCorrection );
215 GEOM_Object MakePipeWithShellSections (in ListOfGO theSeqBases,
216 in ListOfGO theSeqSubBases,
217 in ListOfGO theLocations,
218 in GEOM_Object thePath,
219 in boolean theWithContact ,
220 in boolean theWithCorrection );
222 GEOM_Object MakePipeShellsWithoutPath (in ListOfGO theSeqBases,
223 in ListOfGO theLocations );
225 GEOM_Object MakePipeBiNormalAlongVector (in GEOM_Object theBase,
226 in GEOM_Object thePath,
227 in GEOM_Object theVec);
229 //-----------------------------------------------------------//
230 // BooleanOperations //
231 //-----------------------------------------------------------//
232 GEOM_Object MakeBoolean (in GEOM_Object theShape1,
233 in GEOM_Object theShape2,
234 in long theOperation) ;
235 GEOM_Object MakeFuse (in GEOM_Object theShape1,
236 in GEOM_Object theShape2) ;
237 GEOM_Object MakePartition (in GEOM_List theShapes,
238 in GEOM_List theTools,
239 in GEOM_List theKeepInside,
240 in GEOM_List theRemoveInside,
242 in boolean theRemoveWebs,
243 in GEOM_List theMaterials,
244 in short theKeepNonlimitShapes);
245 GEOM_Object MakeHalfPartition (in GEOM_Object theShape,
246 in GEOM_Object thePlane) ;
248 //-----------------------------------------------------------//
249 // InsertOperations //
250 //-----------------------------------------------------------//
251 GEOM_Object MakeCopy (in GEOM_Object theOriginal) ;
252 void Export (in GEOM_Object theObject, in string theFileName, in string theFormatName) ;
253 GEOM_Object Import (in string theFileName, in string theFormatName) ;
254 void ImportTranslators (out string_array theFormats,
255 out string_array thePatterns) ;
256 void ExportTranslators (out string_array theFormats,
257 out string_array thePatterns) ;
259 //-----------------------------------------------------------//
260 // TransformOperations //
261 //-----------------------------------------------------------//
262 GEOM_Object TranslateTwoPoints (in GEOM_Object theObject,
263 in GEOM_Object thePoint1,
264 in GEOM_Object thePoint2) ;
265 GEOM_Object TranslateTwoPointsCopy (in GEOM_Object theObject,
266 in GEOM_Object thePoint1,
267 in GEOM_Object thePoint2) ;
268 GEOM_Object TranslateDXDYDZ (in GEOM_Object theObject,
272 GEOM_Object TranslateDXDYDZCopy (in GEOM_Object theObject,
276 GEOM_Object TranslateVector (in GEOM_Object theObject,
277 in GEOM_Object theVector) ;
278 GEOM_Object TranslateVectorCopy (in GEOM_Object theObject,
279 in GEOM_Object theVector) ;
280 GEOM_Object TranslateVectorDistance (in GEOM_Object theObject,
281 in GEOM_Object theVector,
282 in double theDistance,
283 in boolean theCopy) ;
284 GEOM_Object MultiTranslate1D (in GEOM_Object theObject,
285 in GEOM_Object theVector,
287 in long theNbTimes) ;
288 GEOM_Object MultiTranslate2D (in GEOM_Object theObject,
289 in GEOM_Object theVector1,
292 in GEOM_Object theVector2,
294 in long theNbTimes2) ;
295 GEOM_Object Rotate (in GEOM_Object theObject,
296 in GEOM_Object theAxis,
297 in double theAngle) ;
298 GEOM_Object RotateCopy (in GEOM_Object theObject,
299 in GEOM_Object theAxis,
300 in double theAngle) ;
301 GEOM_Object RotateThreePoints (in GEOM_Object theObject,
302 in GEOM_Object theCentPoint,
303 in GEOM_Object thePoint1,
304 in GEOM_Object thePoint2);
305 GEOM_Object RotateThreePointsCopy (in GEOM_Object theObject,
306 in GEOM_Object theCentPoint,
307 in GEOM_Object thePoint1,
308 in GEOM_Object thePoint2);
309 GEOM_Object MultiRotate1D (in GEOM_Object theObject,
310 in GEOM_Object theAxis,
311 in long theNbTimes) ;
312 GEOM_Object MultiRotate2D (in GEOM_Object theObject,
313 in GEOM_Object theAxis,
317 in long theNbTimes2) ;
318 GEOM_Object MirrorPlane (in GEOM_Object theObject,
319 in GEOM_Object thePlane) ;
320 GEOM_Object MirrorPlaneCopy (in GEOM_Object theObject,
321 in GEOM_Object thePlane) ;
322 GEOM_Object MirrorAxis (in GEOM_Object theObject,
323 in GEOM_Object theAxis) ;
324 GEOM_Object MirrorAxisCopy (in GEOM_Object theObject,
325 in GEOM_Object theAxis) ;
326 GEOM_Object MirrorPoint (in GEOM_Object theObject,
327 in GEOM_Object thePoint) ;
328 GEOM_Object MirrorPointCopy (in GEOM_Object theObject,
329 in GEOM_Object thePoint) ;
330 GEOM_Object OffsetShape (in GEOM_Object theObject,
331 in double theOffset) ;
332 GEOM_Object OffsetShapeCopy (in GEOM_Object theObject,
333 in double theOffset) ;
334 GEOM_Object ScaleShape (in GEOM_Object theObject,
335 in GEOM_Object thePoint,
336 in double theFactor) ;
337 GEOM_Object ScaleShapeCopy (in GEOM_Object theObject,
338 in GEOM_Object thePoint,
339 in double theFactor) ;
340 GEOM_Object ScaleShapeAlongAxes (in GEOM_Object theObject,
341 in GEOM_Object thePoint,
342 in double theFactorX,
343 in double theFactorY,
344 in double theFactorZ);
345 GEOM_Object ScaleShapeAlongAxesCopy (in GEOM_Object theObject,
346 in GEOM_Object thePoint,
347 in double theFactorX,
348 in double theFactorY,
349 in double theFactorZ);
350 GEOM_Object PositionShape (in GEOM_Object theObject,
351 in GEOM_Object theStartLCS,
352 in GEOM_Object theEndLCS) ;
353 GEOM_Object PositionShapeCopy (in GEOM_Object theObject,
354 in GEOM_Object theStartLCS,
355 in GEOM_Object theEndLCS) ;
356 GEOM_Object PositionAlongPath (in GEOM_Object theObject,
357 in GEOM_Object thePath,
358 in double theDistance,
360 in boolean theReverse);
362 //-----------------------------------------------------------//
363 // ShapesOperations //
364 //-----------------------------------------------------------//
365 GEOM_Object MakeEdge (in GEOM_Object thePnt1,
366 in GEOM_Object thePnt2) ;
367 GEOM_Object MakeWire (in GEOM_List theEdgesAndWires,
368 in double theTolerance) ;
369 GEOM_Object MakeFace (in GEOM_Object theWire,
370 in boolean isPlanarWanted) ;
371 GEOM_Object MakeFaceWires (in GEOM_List theWires,
372 in boolean isPlanarWanted) ;
373 GEOM_Object MakeShell (in GEOM_List theFacesAndShells) ;
374 GEOM_Object MakeSolidShell (in GEOM_Object theShell) ;
375 GEOM_Object MakeSolidShells (in GEOM_List theShells) ;
376 GEOM_Object MakeCompound (in GEOM_List theShapes) ;
377 GEOM_Object MakeGlueFaces (in GEOM_Object theShape,
378 in double theTolerance,
379 in boolean doKeepNonSolids);
380 GEOM_List GetGlueFaces (in GEOM_Object theShape,
381 in double theTolerance);
382 GEOM_Object MakeGlueFacesByList (in GEOM_Object theShape,
383 in double theTolerance,
384 in ListOfGO theFaces,
385 in boolean doKeepNonSolids);
386 GEOM_List MakeExplode (in GEOM_Object theShape,
387 in long theShapeType,
388 in boolean isSorted) ;
389 long NumberOfFaces (in GEOM_Object theShape) ;
390 long NumberOfEdges (in GEOM_Object theShape) ;
391 GEOM_Object ChangeOrientation (in GEOM_Object theShape) ;
393 GEOM_List GetShapesOnShape (in GEOM_Object theCheckShape,
394 in GEOM_Object theShape,
395 in short theShapeType,
396 in shape_state theState);
397 GEOM_Object GetShapesOnShapeAsCompound (in GEOM_Object theCheckShape,
398 in GEOM_Object theShape,
399 in short theShapeType,
400 in shape_state theState);
402 //-----------------------------------------------------------//
403 // BlocksOperations //
404 //-----------------------------------------------------------//
405 GEOM_Object MakeQuad4Vertices (in GEOM_Object thePnt1,
406 in GEOM_Object thePnt2,
407 in GEOM_Object thePnt3,
408 in GEOM_Object thePnt4) ;
409 GEOM_Object MakeQuad (in GEOM_Object theEdge1,
410 in GEOM_Object theEdge2,
411 in GEOM_Object theEdge3,
412 in GEOM_Object theEdge4) ;
413 GEOM_Object MakeQuad2Edges (in GEOM_Object theEdge1,
414 in GEOM_Object theEdge2) ;
415 GEOM_Object MakeHexa (in GEOM_Object theFace1,
416 in GEOM_Object theFace2,
417 in GEOM_Object theFace3,
418 in GEOM_Object theFace4,
419 in GEOM_Object theFace5,
420 in GEOM_Object theFace6) ;
421 GEOM_Object MakeHexa2Faces (in GEOM_Object theFace1,
422 in GEOM_Object theFace2) ;
423 GEOM_Object GetPoint (in GEOM_Object theShape,
427 in double theEpsilon) ;
428 GEOM_Object GetEdge (in GEOM_Object theShape,
429 in GEOM_Object thePoint1,
430 in GEOM_Object thePoint2) ;
431 GEOM_Object GetEdgeNearPoint (in GEOM_Object theShape,
432 in GEOM_Object thePoint) ;
433 GEOM_Object GetFaceByPoints (in GEOM_Object theShape,
434 in GEOM_Object thePoint1,
435 in GEOM_Object thePoint2,
436 in GEOM_Object thePoint3,
437 in GEOM_Object thePoint4) ;
438 GEOM_Object GetFaceByEdges (in GEOM_Object theShape,
439 in GEOM_Object theEdge1,
440 in GEOM_Object theEdge2) ;
441 GEOM_Object GetOppositeFace (in GEOM_Object theBlock,
442 in GEOM_Object theFace) ;
443 GEOM_Object GetFaceNearPoint (in GEOM_Object theShape,
444 in GEOM_Object thePoint) ;
445 GEOM_Object GetFaceByNormale (in GEOM_Object theBlock,
446 in GEOM_Object theVector) ;
447 boolean IsCompoundOfBlocks (in GEOM_Object theCompound,
448 in long theMinNbFaces,
449 in long theMaxNbFaces,
450 out long theNbBlocks) ;
451 boolean CheckCompoundOfBlocks (in GEOM_Object theCompound,
452 out GEOM_IBlocksOperations::BCErrors theErrors) ;
453 string PrintBCErrors (in GEOM_Object theCompound,
454 in GEOM_IBlocksOperations::BCErrors theErrors) ;
455 GEOM_List ExplodeCompoundOfBlocks (in GEOM_Object theCompound,
456 in long theMinNbFaces,
457 in long theMaxNbFaces) ;
458 GEOM_Object GetBlockNearPoint (in GEOM_Object theCompound,
459 in GEOM_Object thePoint) ;
460 GEOM_Object GetBlockByParts (in GEOM_Object theCompound,
461 in GEOM_List theParts) ;
462 GEOM_List GetBlocksByParts (in GEOM_Object theCompound,
463 in GEOM_List theParts) ;
464 GEOM_Object MakeMultiTransformation1D (in GEOM_Object theBlock,
467 in long theNbTimes) ;
468 GEOM_Object MakeMultiTransformation2D (in GEOM_Object theBlock,
469 in long theDirFace1U,
470 in long theDirFace2U,
472 in long theDirFace1V,
473 in long theDirFace2V,
474 in long theNbTimesV) ;
476 //-----------------------------------------------------------//
477 // CurvesOperations //
478 //-----------------------------------------------------------//
479 GEOM_Object MakeCirclePntVecR (in GEOM_Object thePnt,
480 in GEOM_Object theVec,
482 GEOM_Object MakeCircleThreePnt (in GEOM_Object thePnt1,
483 in GEOM_Object thePnt2,
484 in GEOM_Object thePnt3) ;
485 GEOM_Object MakeCircleCenter2Pnt (in GEOM_Object thePnt1,
486 in GEOM_Object thePnt2,
487 in GEOM_Object thePnt3) ;
488 GEOM_Object MakeEllipse (in GEOM_Object thePnt,
489 in GEOM_Object theVec,
491 in double theRMinor) ;
492 GEOM_Object MakeEllipseVec (in GEOM_Object thePnt,
493 in GEOM_Object theVec,
496 in GEOM_Object theVecMaj) ;
497 GEOM_Object MakeArc (in GEOM_Object thePnt1,
498 in GEOM_Object thePnt2,
499 in GEOM_Object thePnt3) ;
500 GEOM_Object MakeArcCenter (in GEOM_Object theCenter,
501 in GEOM_Object thePnt1,
502 in GEOM_Object thePnt2,
503 in boolean theSense) ;
504 GEOM_Object MakeArcOfEllipse (in GEOM_Object theCenter,
505 in GEOM_Object thePnt1,
506 in GEOM_Object thePnt2) ;
507 GEOM_Object MakePolyline (in GEOM_List thePoints) ;
508 GEOM_Object MakeSplineBezier (in GEOM_List thePoints) ;
509 GEOM_Object MakeSplineInterpolation (in GEOM_List thePoints,
510 in boolean theIsClosed) ;
511 GEOM_Object MakeSketcher (in string theCommand,
512 in GEOM_List theWorkingPlane) ;
514 //-----------------------------------------------------------//
515 // LocalOperations //
516 //-----------------------------------------------------------//
517 GEOM_Object MakeFilletAll (in GEOM_Object theShape,
519 GEOM_Object MakeFilletEdges (in GEOM_Object theShape,
521 in GEOM_List theEdges) ;
522 GEOM_Object MakeFilletEdgesR1R2 (in GEOM_Object theShape,
525 in GEOM_List theEdges) ;
526 GEOM_Object MakeFilletFaces (in GEOM_Object theShape,
528 in GEOM_List theFaces) ;
529 GEOM_Object MakeFilletFacesR1R2 (in GEOM_Object theShape,
532 in GEOM_List theFaces) ;
533 GEOM_Object MakeFillet2D (in GEOM_Object theShape,
535 in GEOM_List theVertexes) ;
536 GEOM_Object MakeChamferAll (in GEOM_Object theShape,
538 GEOM_Object MakeChamferEdge (in GEOM_Object theShape,
539 in double theD1, in double theD2,
540 in long theFace1, in long theFace2) ;
541 GEOM_Object MakeChamferEdgeAD (in GEOM_Object theShape,
542 in double theD, in double theAngle,
543 in long theFace1, in long theFace2) ;
544 GEOM_Object MakeChamferFaces (in GEOM_Object theShape,
545 in double theD1, in double theD2,
546 in GEOM_List theFaces) ;
547 GEOM_Object MakeChamferFacesAD (in GEOM_Object theShape,
548 in double theD, in double theAngle,
549 in GEOM_List theFaces) ;
550 GEOM_Object MakeChamferEdges (in GEOM_Object theShape,
551 in double theD1, in double theD2,
552 in GEOM_List theEdges) ;
553 GEOM_Object MakeChamferEdgesAD (in GEOM_Object theShape,
554 in double theD, in double theAngle,
555 in GEOM_List theEdges) ;
556 GEOM_Object MakeArchimede (in GEOM_Object theShape,
558 in double theWaterDensity,
559 in double theMeshDeflection) ;
560 long GetSubShapeIndex (in GEOM_Object theShape,
561 in GEOM_Object theSubShape) ;
563 //-----------------------------------------------------------//
564 // GroupOperations //
565 //-----------------------------------------------------------//
566 GEOM_Object CreateGroup (in GEOM_Object theMainShape,
567 in long theShapeType) ;
568 void AddObject (in GEOM_Object theGroup,
569 in long theSubShapeId) ;
570 void RemoveObject (in GEOM_Object theGroup,
571 in long theSubShapeId) ;
572 long GetType (in GEOM_Object theGroup) ;
573 GEOM_Object GetMainShape(in GEOM_Object theGroup) ;
574 GEOM_List GetObjects(in GEOM_Object theGroup) ;