0024510: Remove unused local variables
[occt.git] / src / TopOpeBRepBuild / TopOpeBRepBuild_Area2dBuilder.cdl
1 -- Created on: 1995-12-21
2 -- Created by: Jean Yves LEBEY
3 -- Copyright (c) 1995-1999 Matra Datavision
4 -- Copyright (c) 1999-2014 OPEN CASCADE SAS
5 --
6 -- This file is part of Open CASCADE Technology software library.
7 --
8 -- This library is free software; you can redistribute it and / or modify it
9 -- under the terms of the GNU Lesser General Public version 2.1 as published
10 -- by the Free Software Foundation, with special exception defined in the file
11 -- OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 -- distribution for complete text of the license and disclaimer of any warranty.
13 --
14 -- Alternatively, this file may be used under the terms of Open CASCADE
15 -- commercial license or contractual agreement.
16
17 class Area2dBuilder from TopOpeBRepBuild 
18     inherits AreaBuilder from TopOpeBRepBuild
19
20 ---Purpose: 
21 -- The Area2dBuilder algorithm is used to construct Faces from a LoopSet,
22 -- where the Loop is the composite topological object of the boundary,
23 -- here wire or block of edges.
24 -- The LoopSet gives an iteration on Loops.
25 -- For each Loop  it indicates if it is on the boundary (wire) or if it
26 -- results from  an interference (block of edges).
27 -- The result of the Area2dBuilder is an iteration on areas.
28 -- An area is described by a set of Loops.
29
30 uses
31
32     LoopSet from TopOpeBRepBuild,
33     LoopClassifier from TopOpeBRepBuild
34     
35 is
36
37     Create returns Area2dBuilder;
38
39     Create(LS : in out LoopSet; LC : in out LoopClassifier;
40            ForceClass : Boolean = Standard_False) returns Area2dBuilder;
41     ---Purpose: Creates a Area2dBuilder to build faces on
42     -- the (wires,blocks of edge) of <LS>, using the classifier <LC>.
43
44     InitAreaBuilder(me : in out;
45                     LS : in out LoopSet; LC : in out LoopClassifier;
46                     ForceClass : Boolean = Standard_False)
47     ---Purpose: Sets a Area1dBuilder to find the areas of
48     -- the shapes described by <LS> using the classifier <LC>.
49     is redefined;
50     
51 end Area2dBuilder from TopOpeBRepBuild;