Files
OCCT/src/TopOpeBRepBuild/TopOpeBRepBuild_AreaBuilder.cdl
T
abv d5f74e42d6 0024624: Lost word in license statement in source files
License statement text corrected; compiler warnings caused by Bison 2.41 disabled for MSVC; a few other compiler warnings on 54-bit Windows eliminated by appropriate type cast
Wrong license statements corrected in several files.
Copyright and license statements added in XSD and GLSL files.
Copyright year updated in some files.
Obsolete documentation files removed from DrawResources.
2014-02-20 16:15:17 +04:00

114 lines
4.3 KiB
Plaintext

-- Created on: 1995-12-21
-- Created by: Jean Yves LEBEY
-- Copyright (c) 1995-1999 Matra Datavision
-- Copyright (c) 1999-2014 OPEN CASCADE SAS
--
-- This file is part of Open CASCADE Technology software library.
--
-- This library is free software; you can redistribute it and/or modify it under
-- the terms of the GNU Lesser General Public License version 2.1 as published
-- by the Free Software Foundation, with special exception defined in the file
-- OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
-- distribution for complete text of the license and disclaimer of any warranty.
--
-- Alternatively, this file may be used under the terms of Open CASCADE
-- commercial license or contractual agreement.
class AreaBuilder from TopOpeBRepBuild
---Purpose:
-- The AreaBuilder algorithm is used to
-- reconstruct complex topological objects as Faces
-- or Solids.
-- * Loop is the composite topological object of
-- the boundary. Wire for a Face. Shell for a Solid.
-- * LoopSet is a tool describing the object to
-- build. It gives an iteration on Loops. For each
-- Loop it tells if it is on the boundary or if it is
-- an interference.
-- * LoopClassifier is an algorithm used to test
-- if a Loop is inside another Loop.
-- The result of the reconstruction is an iteration
-- on the reconstructed areas. An area is described
-- by a set of Loops.
-- A AreaBuilder is built with :
-- - a LoopSet describing the object to reconstruct.
-- - a LoopClassifier providing the classification algorithm.
uses
State from TopAbs,
Loop from TopOpeBRepBuild,
ListOfLoop from TopOpeBRepBuild,
ListIteratorOfListOfLoop from TopOpeBRepBuild,
ListOfListOfLoop from TopOpeBRepBuild,
ListIteratorOfListOfListOfLoop from TopOpeBRepBuild,
LoopSet from TopOpeBRepBuild,
LoopClassifier from TopOpeBRepBuild,
LoopEnum from TopOpeBRepBuild
is
Create returns AreaBuilder;
Create(LS : in out LoopSet; LC : in out LoopClassifier;
ForceClass : Boolean = Standard_False) returns AreaBuilder;
---Purpose: Creates a AreaBuilder to build the areas on
-- the shapes described by <LS> using the classifier <LC>.
Delete(me:out) is virtual;
---C++: alias "Standard_EXPORT virtual ~TopOpeBRepBuild_AreaBuilder(){Delete() ; }"
InitAreaBuilder(me : in out;
LS : in out LoopSet; LC : in out LoopClassifier;
ForceClass : Boolean from Standard = Standard_False)
---Purpose: Sets a AreaBuilder to find the areas on
-- the shapes described by <LS> using the classifier <LC>.
is virtual;
CompareLoopWithListOfLoop(me;
LC : in out LoopClassifier;
L : Loop;
LOL : ListOfLoop;
le : LoopEnum)
returns State from TopAbs is static protected;
Atomize(me;state : in out State from TopAbs; newstate : State from TopAbs)
is static protected;
InitArea(me : in out) returns Integer from Standard is static;
---Purpose: Initialize iteration on areas.
MoreArea(me) returns Boolean from Standard is static;
NextArea(me : in out) is static;
InitLoop(me : in out) returns Integer from Standard is static;
---Purpose: Initialize iteration on loops of current Area.
MoreLoop(me) returns Boolean from Standard is static;
NextLoop(me : in out) is static;
Loop(me) returns Loop from TopOpeBRepBuild is static;
---Purpose: Returns the current Loop in the current area.
---C++: return const&
ADD_Loop_TO_LISTOFLoop(me; L : Loop;
LOL : in out ListOfLoop;
s : Address = NULL) is virtual;
REM_Loop_FROM_LISTOFLoop(me; ITLOL : in out ListIteratorOfListOfLoop;
LOL : in out ListOfLoop;
s : Address = NULL) is virtual;
ADD_LISTOFLoop_TO_LISTOFLoop(me; LOL1 : in out ListOfLoop;
LOL2 : in out ListOfLoop;
s : Address = NULL;
s1 : Address = NULL;
s2 : Address = NULL) is virtual;
fields
myArea : ListOfListOfLoop is protected;
myAreaIterator : ListIteratorOfListOfListOfLoop is protected;
myLoopIterator : ListIteratorOfListOfLoop is protected;
myUNKNOWNRaise : Boolean is protected;
end AreaBuilder from TopOpeBRepBuild;