0023024: Update headers of OCCT files
[occt.git] / src / BRepLib / BRepLib_MakeShell.cdl
1 -- Created on: 1995-01-04
2 -- Created by: Bruno DUMORTIER
3 -- Copyright (c) 1995-1999 Matra Datavision
4 -- Copyright (c) 1999-2012 OPEN CASCADE SAS
5 --
6 -- The content of this file is subject to the Open CASCADE Technology Public
7 -- License Version 6.5 (the "License"). You may not use the content of this file
8 -- except in compliance with the License. Please obtain a copy of the License
9 -- at http://www.opencascade.org and read it completely before using this file.
10 --
11 -- The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
12 -- main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
13 --
14 -- The Original Code and all software distributed under the License is
15 -- distributed on an "AS IS" basis, without warranty of any kind, and the
16 -- Initial Developer hereby disclaims all such warranties, including without
17 -- limitation, any warranties of merchantability, fitness for a particular
18 -- purpose or non-infringement. Please see the License for the specific terms
19 -- and conditions governing the rights and limitations under the License.
20
21
22
23
24
25 class MakeShell from BRepLib inherits MakeShape from BRepLib
26
27         ---Purpose: Provides methos to build shells.
28         --          
29         --          Build a shell from a set of faces.
30         --          Build untied shell from a non C2 surface
31         --          splitting it into C2-continuous parts.
32
33 uses
34
35     Surface    from Geom,
36     Shell      from TopoDS,
37     Face       from TopoDS,
38     ShellError from BRepLib
39     
40
41 raises
42     NotDone from StdFail
43
44 is
45     Create  
46         ---Purpose: Not done.
47         ---Level: Public
48     returns MakeShell from BRepLib;
49     
50     ----------------------------------------------
51     -- From a set of face
52     ----------------------------------------------
53
54     ----------------------------------------------
55     -- From a surface
56     ----------------------------------------------
57
58     Create(S : Surface from Geom;
59            Segment : Boolean from Standard = Standard_False)
60         ---Level: Public
61     returns MakeShell from BRepLib;
62     
63     Create(S       : Surface from Geom; UMin, UMax, VMin, VMax : Real;
64            Segment : Boolean from Standard = Standard_False)
65         ---Level: Public
66     returns MakeShell from BRepLib;
67
68     Init(me : in out; S : Surface from Geom; UMin, UMax, VMin, VMax : Real; 
69                       Segment : Boolean from Standard = Standard_False)
70         ---Purpose: Creates the shell from the surface  and the min-max
71         --          values.
72         ---Level: Public
73     is static;
74
75
76     ----------------------------------------------
77     -- Results
78     ----------------------------------------------
79
80     Error(me) returns ShellError from BRepLib
81         ---Level: Public
82     is static;
83
84     Shell(me) returns Shell from TopoDS
85         ---Purpose: Returns the new Shell.
86         --          
87         ---C++: return const &
88         ---C++: alias "Standard_EXPORT operator TopoDS_Shell() const;"
89         ---Level: Public
90     raises
91         NotDone from StdFail
92     is static; 
93     
94 fields
95     myError : ShellError from BRepLib;
96
97 end MakeShell;