Salome HOME
NRI : First integration.
[modules/smesh.git] / src / SMDS / SMDSControl_BoundaryEdges.cdl
1 -- File:        SMDSControl_BoundaryEdges.cdl
2 -- Created:     Wed Feb 20 19:17:20 2002
3 -- Author:      Jean-Michel BOULCOURT
4 --              <jmb@localhost.localdomain>
5 ---Copyright:    Matra Datavision 2002
6
7
8 class BoundaryEdges from SMDSControl inherits MeshBoundary from SMDSControl
9
10         ---Purpose: compute  the boudary edges  of a mesh that  is the
11         --          edges that are shared  by only one face the result
12         --          is a new  mesh created in the same  factory as the
13         --          original mesh that contains only edges
14
15 uses
16
17     Mesh from SMDS,
18     MapOfMeshElement from SMDS
19 is
20
21     Create(M: Mesh from SMDS) returns BoundaryEdges from SMDSControl;
22     
23     Compute(me: mutable) is redefined virtual;
24
25 fields
26
27     myBoundaryEdges : MapOfMeshElement from SMDS;
28     
29 end BoundaryEdges;