Salome HOME
Implementation of Quadrangle (Mapping) for faces built on 3 edges (0018911 from Mantis).
[modules/smesh.git] / idl / SMESH_BasicHypothesis.idl
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
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.
10 //
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.
15 //
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
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //  File   : SMESH_BasicHypothesis.idl
23 //  Author : Paul RASCLE, EDF
24 //
25 #ifndef _SMESH_BASICHYPOTHESIS_IDL_
26 #define _SMESH_BASICHYPOTHESIS_IDL_
27
28 #include "SALOME_Exception.idl"
29 #include "SMESH_Hypothesis.idl"
30 #include "SMESH_Mesh.idl"
31
32 /*!
33  * StdMeshers: interfaces to standard hypotheses and algorithms
34  */
35 module StdMeshers
36 {
37   /*!
38    * StdMeshers_LocalLength: interface of "Average length" hypothesis
39    */
40   interface StdMeshers_LocalLength : SMESH::SMESH_Hypothesis
41   {
42     /*!
43      * Sets <length> parameter value
44      */
45     void SetLength(in double length)
46       raises (SALOME::SALOME_Exception);
47
48     /*!
49      * Sets <precision> parameter value
50      *
51      * Precision parameter is used to allow rounding a number of segments,
52      * calculated from the edge length and average length of segment,
53      * to the lower integer, if this value outstands from it in bounds of the precision.
54      * Otherwise, the number of segments is rounded to the higher integer.
55      * Use value 0.5 to provide rounding to the nearest integer,
56      * 1.0 for the lower integer, 0.0 for the higher integer.
57      * Default value is 1e-07. In old studies, restored from file,
58      * this value will be set to zero, what corresponds to the old behaviour.
59      */
60     void SetPrecision(in double precision)
61       raises (SALOME::SALOME_Exception);
62
63     /*!
64      * Returns <length> parameter value
65      */
66     double GetLength();
67
68     /*!
69      * Returns <precision> parameter value
70      */
71     double GetPrecision();
72   };
73
74   /*!
75    * StdMeshers_MaxLength: interface of "Max length" hypothesis
76    */
77   interface StdMeshers_MaxLength : SMESH::SMESH_Hypothesis
78   {
79     /*!
80      * Sets <length> parameter value
81      */
82     void SetLength(in double length)
83       raises (SALOME::SALOME_Exception);
84     /*!
85      * Returns <length> parameter value
86      */
87     double GetLength();
88     /*!
89      * Returns true if preestemated length is defined
90      */
91     boolean HavePreestimatedLength();
92     /*!
93      * Returns preestemated length
94      */
95     double GetPreestimatedLength();
96     /*!
97      * Sets preestemated length
98      */
99     void SetPreestimatedLength(in double length);
100     /*!
101      * Sets boolean parameter enabling/desabling usage of length computed
102      * basing on size of bounding box of shape to mesh
103      */
104     void SetUsePreestimatedLength(in boolean toUse);
105     /*!
106      * Returns value of boolean parameter enabling/desabling usage of length computed
107      * basing on size of bounding box of shape to mesh
108      */
109     boolean GetUsePreestimatedLength();
110   };
111
112   /*!
113    * StdMeshers_AutomaticLength: interface of "Automatic length" hypothesis
114    */
115   interface StdMeshers_AutomaticLength : SMESH::SMESH_Hypothesis
116   {
117     /*!
118      * Sets Fineness parameter value
119      */
120     void SetFineness(in double theFineness)
121       raises (SALOME::SALOME_Exception);
122
123     /*!
124      * Returns <Fineness> parameter value
125      */
126     double GetFineness();
127   };
128
129   /*!
130    * StdMeshers_NumberOfSegments: interface of "Nb. Segments" hypothesis
131    */
132   interface StdMeshers_NumberOfSegments : SMESH::SMESH_Hypothesis
133   {
134     /*!
135      * Builds and returns point distribution according to passed density function
136      */
137     SMESH::double_array BuildDistributionExpr( in string func, in long nbSeg, in long conv )
138       raises (SALOME::SALOME_Exception);
139     SMESH::double_array BuildDistributionTab( in SMESH::double_array func, in long nbSeg, in long conv )
140       raises (SALOME::SALOME_Exception);
141   
142     /*!
143      * Sets <number of segments> parameter value
144      */
145     void SetNumberOfSegments(in long segmentsNumber)
146       raises (SALOME::SALOME_Exception);
147
148     /*!
149      * Returns <number of segments> parameter value
150      */
151     long GetNumberOfSegments();
152
153     /*!
154      * Sets <distribution type> parameter value
155      */
156     void SetDistrType(in long typ)
157       raises (SALOME::SALOME_Exception);
158
159     /*!
160      * Returns <distribution type> parameter value
161      */
162     long GetDistrType();
163
164     /*!
165      * Sets <scale factor> parameter value
166      */
167     void SetScaleFactor(in double scaleFactor)
168       raises (SALOME::SALOME_Exception);
169
170     /*!
171      * Returns <scale factor> parameter value
172      */
173     double GetScaleFactor()
174       raises (SALOME::SALOME_Exception);
175
176     /*!
177      * Sets <table function> parameter value for distribution DT_TabFunc
178      */
179     void SetTableFunction(in SMESH::double_array table)
180       raises (SALOME::SALOME_Exception);
181
182     /*!
183      * Returns <table function> parameter value for distribution DT_TabFunc
184      */
185     SMESH::double_array GetTableFunction()
186       raises (SALOME::SALOME_Exception);
187
188     /*!
189      * Sets <expression function> parameter value for distribution DT_ExprFunc
190      */
191     void SetExpressionFunction(in string expr)
192       raises (SALOME::SALOME_Exception);
193
194     /*!
195      * Returns <expression function> parameter value for distribution DT_ExprFunc
196      */
197     string GetExpressionFunction()
198       raises (SALOME::SALOME_Exception);
199
200     /*!
201      * Sets <conversion mode> parameter value for functional distributions
202      */
203     void SetConversionMode(in long conv )
204       raises (SALOME::SALOME_Exception);
205
206     /*!
207      * Returns <conversion mode> parameter value for functional distributions
208      */
209     long ConversionMode()
210       raises (SALOME::SALOME_Exception);
211
212     /*!
213      * Set list of edges to reverse
214      */
215     void SetReversedEdges( in SMESH::long_array list );
216     
217     /*!
218      * Returns list of edges to reverse
219      */
220     SMESH::long_array GetReversedEdges();
221     
222     /*!
223      * Set entry of the main object
224      */
225     void SetObjectEntry( in string entry );
226     
227     /*!
228      * Get the entry of the main object
229      */
230     string GetObjectEntry();
231   };
232
233   /*!
234    * StdMeshers_Arithmetic1D: interface of "Arithmetic 1D" hypothesis
235    */
236   interface StdMeshers_Arithmetic1D : SMESH::SMESH_Hypothesis
237   {
238     /*!
239      * Sets <start segment length> or <end segment length> parameter value
240      * * OBSOLETE *. Avoid such a way of interface design
241      * * It is recommended to dedicate a method to each parameter.
242      */
243     void SetLength(in double length, in boolean isStartLength) 
244       raises (SALOME::SALOME_Exception);
245
246     /*!
247      * Sets <start segment length> parameter value
248      */
249     void SetStartLength(in double length) 
250       raises (SALOME::SALOME_Exception);
251
252     /*!
253      * Sets <end segment length> parameter value
254      */
255     void SetEndLength(in double length)
256       raises (SALOME::SALOME_Exception);
257
258     /*!
259      * Returns <start segment length> or <end segment length> parameter value
260      */
261     double GetLength(in boolean isStartLength);
262     
263     /*!
264      * Set list of edges to reverse
265      */
266     void SetReversedEdges( in SMESH::long_array list );
267     
268     /*!
269      * Returns list of edges to reverse
270      */
271     SMESH::long_array GetReversedEdges();
272     
273     /*!
274      * Set entry of the main object
275      */
276     void SetObjectEntry( in string entry );
277     
278     /*!
279      * Get the entry of the main object
280      */
281     string GetObjectEntry();
282   };
283
284   /*!
285    * StdMeshers_MaxElementArea: interface of "Max. Triangle Area" hypothesis
286    */
287   interface StdMeshers_MaxElementArea : SMESH::SMESH_Hypothesis
288   {
289     /*!
290      * Sets <maximum element area> parameter value
291      */
292     void SetMaxElementArea(in double area) 
293       raises (SALOME::SALOME_Exception);
294
295     /*!
296      * Returns <maximum element area> parameter value
297      */
298     double GetMaxElementArea();
299   };
300
301   /*!
302    * StdMeshers_LengthFromEdges: interface of "Length From Edges (2D Hyp. for Triangulator)" hypothesis
303    */
304   interface StdMeshers_LengthFromEdges : SMESH::SMESH_Hypothesis
305   {
306     /*!
307      * Sets <mode> parameter value
308      */
309     void SetMode(in long mode) 
310       raises (SALOME::SALOME_Exception);
311
312     /*!
313      * Returns <mode> parameter value
314      */
315     long GetMode();
316   };
317
318   /*!
319    * StdMeshers_StartEndLength: interface of "Start and End Length" hypothesis
320    */
321   interface StdMeshers_StartEndLength : SMESH::SMESH_Hypothesis
322   {
323     /*!
324      * Sets <start segment length> or <end segment length> parameter value
325      * * OBSOLETE *. Avoid such a way of interface design.
326      * * It is recommended to dedicate a method to each parameter.
327      */
328     void SetLength(in double length, in boolean isStartLength) 
329       raises (SALOME::SALOME_Exception);
330
331     /*!
332      * Sets <start segment length> parameter value
333      */
334     void SetStartLength(in double length) 
335       raises (SALOME::SALOME_Exception);
336
337     /*!
338      * Sets <end segment length> parameter value
339      */
340     void SetEndLength(in double length)
341       raises (SALOME::SALOME_Exception);
342
343     /*!
344      * Returns <start segment length> or <end segment length> parameter value
345      */
346     double GetLength(in boolean isStartLength);
347
348     /*!
349      * Set list of edges to reverse
350      */
351     void SetReversedEdges( in SMESH::long_array list );
352     
353     /*!
354      * Returns list of edges to reverse
355      */
356     SMESH::long_array GetReversedEdges();
357     
358     /*!
359      * Set entry of the main object
360      */
361     void SetObjectEntry( in string entry );
362     
363     /*!
364      * Get the entry of the main object
365      */
366     string GetObjectEntry();
367   };
368
369
370   /*!
371    * StdMeshers_Deflection1D: interface of "Deflection 1D" hypothesis
372    */
373   interface StdMeshers_Deflection1D : SMESH::SMESH_Hypothesis
374   {
375     /*!
376      * Sets <deflection> parameter value
377      */
378     void SetDeflection(in double deflection)
379       raises (SALOME::SALOME_Exception);
380
381     /*!
382      * Returns <deflection> parameter value
383      */
384     double GetDeflection();
385   };
386
387
388   /*!
389    * StdMeshers_MaxElementVolume: interface of "Max. Hexahedron or Tetrahedron Volume" hypothesis
390    */
391   interface StdMeshers_MaxElementVolume : SMESH::SMESH_Hypothesis
392   {
393     /*!
394      * Sets <maximum element volume> parameter value
395      */
396     void SetMaxElementVolume(in double volume) 
397       raises (SALOME::SALOME_Exception);
398
399     /*!
400      * Returns <maximum element volume> parameter value
401      */
402     double GetMaxElementVolume();
403   };
404
405   /*!
406    * StdMeshers_NotConformAllowed: interface of "Not Conform Mesh Allowed" hypothesis.
407    * Presence of this hypothesis permits to algorithm generation of not conform mesh.
408    */
409   interface StdMeshers_NotConformAllowed : SMESH::SMESH_Hypothesis
410   {
411   };
412
413   /*!
414    * StdMeshers_Propagation: interface of "Propagation" hypothesis.
415    * Presence of this hypothesis on any edge propagates any other 1D
416    * hypothesis from this edge on all edges, opposite to it.
417    * It concerns only edges of quadrangle faces.
418    */
419   interface StdMeshers_Propagation : SMESH::SMESH_Hypothesis
420   {
421   };
422
423   /*!
424    * StdMeshers_QuadranglePreference: interface of "QuadranglePreference" hypothesis.
425    * This hypothesis is used by StdMeshers_Quadrangle_2D algorithm.
426    * Presence of this hypothesis forces construction of quadrangles if the number
427    * of nodes on opposite edges is not the same in the case where the global number
428    * of nodes on edges is even
429    */
430   interface StdMeshers_QuadranglePreference : SMESH::SMESH_Hypothesis
431   {
432   };
433
434   /*!
435    * StdMeshers_TrianglePreference: interface of "TrianglePreference" hypothesis.
436    * This hypothesis is used by StdMeshers_Quadrangle_2D algorithm.
437    * Presence of this hypothesis forces construction of triangles in the refinement 
438    * area if the number of nodes on opposite edges is not the same.
439    */
440   interface StdMeshers_TrianglePreference : SMESH::SMESH_Hypothesis
441   {
442   };
443
444   /*!
445    * StdMeshers_QuadraticMesh: interface of "QuadraticMesh" hypothesis.
446    * This is an auxiliary 1D hypothesis whose presence forces construction 
447    * of quadratic edges.
448    * If the 2D mesher sees that all boundary edges are quadratic ones,
449    * it generates quadratic faces, else it generates linear faces using
450    * medium nodes as if they were vertex ones.
451    * The 3D mesher generates quadratic volumes only if all boundary faces
452    * are quadratic ones, else it fails.
453    */
454   interface StdMeshers_QuadraticMesh : SMESH::SMESH_Hypothesis
455   {
456   };
457
458
459   /*!
460    * StdMeshers_NumberOfLayers: interface of "Nb. Layers" hypothesis.
461    * This hypothesis is used by "Radial prism" algorithm.
462    * It specifies number of segments between the internal 
463    * and the external surfaces.
464    */
465   interface StdMeshers_NumberOfLayers : SMESH::SMESH_Hypothesis
466   {
467     /*!
468      * Sets <number of segments> parameter value
469      */
470     void SetNumberOfLayers(in long numberOfLayers) 
471       raises (SALOME::SALOME_Exception);
472
473     /*!
474      * Returns <number of layers> parameter value
475      */
476     long GetNumberOfLayers();
477
478   };
479
480   /*!
481    * StdMeshers_LayerDistribution: interface of "Distribution of Layers" hypothesis.
482    * This hypothesis is used by "Radial prism" algorithm.
483    * It specifies 1D hypothesis defining distribution of segments between the internal 
484    * and the external surfaces.
485    */
486   interface StdMeshers_LayerDistribution : SMESH::SMESH_Hypothesis
487   {
488     /*!
489      * Sets  1D hypothesis specifying distribution of layers
490      */
491     void SetLayerDistribution(in SMESH::SMESH_Hypothesis distributionHyp) 
492       raises (SALOME::SALOME_Exception);
493
494     /*!
495      * Returns 1D hypothesis specifying distribution of layers
496      */
497     SMESH::SMESH_Hypothesis GetLayerDistribution();
498
499   };
500
501   /*!
502    * interface of "ProjectionSource1D" hypothesis.
503    * This hypothesis specifies a meshed edge to take a mesh pattern from
504    * and optionally association of vertices between the source edge and a
505    * target one (where a hipothesis is assigned to)
506    */
507   interface StdMeshers_ProjectionSource1D : SMESH::SMESH_Hypothesis
508   {
509     /*!
510      * Sets source <edge> to take a mesh pattern from
511      */
512     void SetSourceEdge(in GEOM::GEOM_Object edge)
513       raises (SALOME::SALOME_Exception);
514
515     /*!
516      * Returns the source edge
517      */
518     GEOM::GEOM_Object GetSourceEdge();
519
520     /*!
521      * Sets source <mesh> to take a mesh pattern from
522      */
523     void SetSourceMesh(in SMESH::SMESH_Mesh mesh);
524
525     /*!
526      * Return source mesh
527      */
528     SMESH::SMESH_Mesh GetSourceMesh();
529
530     /*!
531      * Sets vertex association between the source edge and the target one.
532      * This parameter is optional
533      */
534     void SetVertexAssociation(in GEOM::GEOM_Object sourceVertex,
535                               in GEOM::GEOM_Object targetVertex)
536       raises (SALOME::SALOME_Exception);
537
538     /*!
539      * Returns the vertex associated with the target vertex.
540      * Result may be nil if association not set
541      */
542     GEOM::GEOM_Object  GetSourceVertex();
543
544     /*!
545      * Returns the vertex associated with the source vertex.
546      * Result may be nil if association not set
547      */
548     GEOM::GEOM_Object  GetTargetVertex();
549   };
550
551   /*!
552    * interface of "ProjectionSource2D" hypothesis.
553    * This hypothesis specifies a meshed face to take a mesh pattern from
554    * and optionally association of vertices between the source face and a
555    * target one (where a hipothesis is assigned to)
556    */
557   interface StdMeshers_ProjectionSource2D : SMESH::SMESH_Hypothesis
558   {
559     /*!
560      * Sets a source <face> to take a mesh pattern from
561      */
562     void SetSourceFace(in GEOM::GEOM_Object face)
563       raises (SALOME::SALOME_Exception);
564
565     /*!
566      * Returns the source face
567      */
568     GEOM::GEOM_Object GetSourceFace();
569
570     /*!
571      * Sets source <mesh> to take a mesh pattern from
572      */
573     void SetSourceMesh(in SMESH::SMESH_Mesh mesh);
574
575     /*!
576      * Return source mesh
577      */
578     SMESH::SMESH_Mesh GetSourceMesh();
579
580     /*!
581      * Sets vertex association between the source face and the target one.
582      * This parameter is optional.
583      * Two vertices must belong to one edge of a face
584      */
585     void SetVertexAssociation(in GEOM::GEOM_Object sourceVertex1,
586                               in GEOM::GEOM_Object sourceVertex2,
587                               in GEOM::GEOM_Object targetVertex1,
588                               in GEOM::GEOM_Object targetVertex2)
589       raises (SALOME::SALOME_Exception);
590
591     /*!
592      * Returns the <i>-th source vertex associated with the <i>-th target vertex.
593      * Result may be nil if association not set.
594      * Valid indices are 1 and 2
595      */
596     GEOM::GEOM_Object  GetSourceVertex(in long i)
597       raises (SALOME::SALOME_Exception);
598
599     /*!
600      * Returns the <i>-th target vertex associated with the <i>-th source vertex.
601      * Result may be nil if association not set.
602      * Valid indices are 1 and 2
603      */
604     GEOM::GEOM_Object  GetTargetVertex(in long i)
605       raises (SALOME::SALOME_Exception);
606   };
607
608   /*!
609    * interface of "ProjectionSource3D" hypothesis.
610    * This hypothesis specifies a meshed shell or solid to take a mesh pattern from
611    * and optionally association of vertices between the source shape and a
612    * target one (where a hipothesis is assigned to)
613    */
614   interface StdMeshers_ProjectionSource3D : SMESH::SMESH_Hypothesis
615   {
616     /*!
617      * Sets a source <shape> to take a mesh pattern from
618      */
619     void SetSource3DShape(in GEOM::GEOM_Object shape)
620       raises (SALOME::SALOME_Exception);
621
622     /*!
623      * Returns the source shape
624      */
625     GEOM::GEOM_Object GetSource3DShape();
626
627     /*!
628      * Sets source <mesh> to take a mesh pattern from
629      */
630     void SetSourceMesh(in SMESH::SMESH_Mesh mesh);
631
632     /*!
633      * Return source mesh
634      */
635     SMESH::SMESH_Mesh GetSourceMesh();
636
637     /*!
638      * Sets vertex association between the source shape and the target one.
639      * This parameter is optional.
640      * Two vertices must belong to one edge of a shape
641      */
642     void SetVertexAssociation(in GEOM::GEOM_Object sourceVertex1,
643                               in GEOM::GEOM_Object sourceVertex2,
644                               in GEOM::GEOM_Object targetVertex1,
645                               in GEOM::GEOM_Object targetVertex2)
646       raises (SALOME::SALOME_Exception);
647
648     /*!
649      * Returns the <i>-th source vertex associated with the <i>-th target vertex.
650      * Result may be nil if association not set.
651      * Valid indices are 1 and 2
652      */
653     GEOM::GEOM_Object  GetSourceVertex(in long i)
654       raises (SALOME::SALOME_Exception);
655
656     /*!
657      * Returns the <i>-th target vertex associated with the <i>-th source vertex.
658      * Result may be nil if association not set.
659      * Valid indices are 1 and 2
660      */
661     GEOM::GEOM_Object  GetTargetVertex(in long i)
662       raises (SALOME::SALOME_Exception);
663   };
664
665   /*!
666    * interface of "SegmentLengthAroundVertex" hypothesis.
667    * This hypothesis specifies length of segments adjacent to the vertex the
668    * hypothesis is assigned to
669    */
670   interface StdMeshers_SegmentLengthAroundVertex : SMESH::SMESH_Hypothesis
671   {
672     /*!
673      * Sets <length> parameter value
674      */
675     void SetLength(in double length)
676       raises (SALOME::SALOME_Exception);
677
678     /*!
679      * Returns <length> parameter value
680      */
681     double GetLength();
682   };
683
684   /*!
685    * StdMeshers_QuadrangleParams: interface of "Quadrangle Params" hypothesis
686    */
687   interface StdMeshers_QuadrangleParams : SMESH::SMESH_Hypothesis
688   {
689     /*!
690      * Set base vertex for triangles
691      */
692     void SetTriaVertex( in long vertID );
693     
694     /*!
695      * Returns base vertex for triangles
696      */
697     long GetTriaVertex();
698     
699     /*!
700      * Set entry of the main object
701      */
702     void SetObjectEntry( in string entry );
703     
704     /*!
705      * Get the entry of the main object
706      */
707     string GetObjectEntry();
708   };
709
710   /*!
711    * StdMeshers_SegmentAroundVertex_0D: interface of "SegmentAroundVertex" algorithm
712    */
713   interface StdMeshers_SegmentAroundVertex_0D : SMESH::SMESH_0D_Algo
714   {
715   };
716
717   /*!
718    * StdMeshers_Regular_1D: interface of "Wire discretisation" algorithm
719    */
720   interface StdMeshers_Regular_1D : SMESH::SMESH_1D_Algo
721   {
722   };
723
724   /*!
725    * StdMeshers_CompositeSegment_1D: interface of "Composite side discretisation" algorithm
726    */
727   interface StdMeshers_CompositeSegment_1D : SMESH::SMESH_1D_Algo
728   {
729   };
730
731   /*!
732    * StdMeshers_MEFISTO_2D: interface of "Triangle (Mefisto)" algorithm
733    */
734   interface StdMeshers_MEFISTO_2D : SMESH::SMESH_2D_Algo
735   {
736   };
737
738   /*!
739    * StdMeshers_Quadrangle_2D: interface of "Quadrangle (Mapping)" algorithm
740    */
741   interface StdMeshers_Quadrangle_2D : SMESH::SMESH_2D_Algo
742   {
743   };
744
745   /*!
746    * StdMeshers_Hexa_3D: interface of "Hexahedron (i,j,k)" algorithm
747    */
748   interface StdMeshers_Hexa_3D : SMESH::SMESH_3D_Algo
749   {
750   };
751
752   /*!
753    * StdMeshers_Prism_3D: interface of "3D extrusion" algorithm
754    */
755   interface StdMeshers_Prism_3D : SMESH::SMESH_3D_Algo
756   {
757   };
758
759   /*!
760    * StdMeshers_RadialPrism_3D: interface of "Radial Prism" algorithm
761    */
762   interface StdMeshers_RadialPrism_3D : SMESH::SMESH_3D_Algo
763   {
764   };
765
766   /*!
767    * StdMeshers_Projection_3D: interface of "Projection 3D" algorithm
768    */
769   interface StdMeshers_Projection_3D : SMESH::SMESH_3D_Algo
770   {
771   };
772
773   /*!
774    * StdMeshers_Projection_2D: interface of "Projection 2D" algorithm
775    */
776   interface StdMeshers_Projection_2D : SMESH::SMESH_2D_Algo
777   {
778   };
779
780   /*!
781    * StdMeshers_Projection_1D: interface of "Projection 1D" algorithm
782    */
783   interface StdMeshers_Projection_1D : SMESH::SMESH_1D_Algo
784   {
785   };
786
787   /*!
788    * StdMeshers_UseExisting_2D: interface of "UseExisting 2D" algorithm
789    * doing nothing to allow mesh generation by mesh edition functions in TUI mode
790    */
791   interface StdMeshers_UseExisting_2D : SMESH::SMESH_2D_Algo
792   {
793   };
794
795   /*!
796    * StdMeshers_UseExisting_1D: interface of "UseExisting 1D" algorithm
797    * doing nothing to allow mesh generation by mesh edition functions in TUI mode
798    */
799   interface StdMeshers_UseExisting_1D : SMESH::SMESH_1D_Algo
800   {
801   };
802
803 };
804
805 #endif