Integration of OCCT 6.5.0 from SVN

This commit is contained in:
bugmaster
2011-03-16 07:30:28 +00:00
committed by bugmaster
parent 4903637061
commit 7fd59977df
16375 changed files with 3882564 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
-- File: StrongComponants.cdl
-- Created: Wed Sep 23 14:26:23 1992
-- Author: Christian CAILLET
-- <cky@phobox>
---Copyright: Matra Datavision 1992
class StrongComponants from IFGraph inherits SubPartsIterator
---Purpose : determines strong componants of a graph, that is
-- isolated entities (single componants) or loops
uses Graph
is
Create (agraph : Graph; whole : Boolean) returns StrongComponants;
---Purpose : creates with a Graph, and will analyse :
-- whole True : all the contents of the Model
-- whole False : sub-parts which will be given later
Evaluate (me : in out) is redefined;
---Purpose : does the computation
-- -- Iteration : More-Next-etc... will give strong componants
end StrongComponants;