-- Created on: 1995-10-20 -- Created by: Yves FRICAUD -- 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 Analyse from BRepOffset ---Purpose: Analyse of a shape consit to -- Find the part of edges convex concave tangent. uses Shape from TopoDS, Face from TopoDS, Edge from TopoDS, Vertex from TopoDS, Compound from TopoDS, IndexedDataMapOfShapeListOfShape from TopTools, ListOfShape from TopTools, MapOfShape from TopTools, Interval from BRepOffset, ListOfInterval from BRepOffset, DataMapOfShapeListOfInterval from BRepOffset, Type from BRepOffset is Create; Create (S : Shape from TopoDS ; Angle : Real from Standard) returns Analyse from BRepOffset; Perform (me : in out ; S : Shape from TopoDS ; Angle : Real from Standard) is static; IsDone (me) returns Boolean from Standard is static; Clear(me : in out) is static; Type (me; E : Edge from TopoDS) ---C++: return const& returns ListOfInterval from BRepOffset is static; Edges (me; V : Vertex from TopoDS; T : Type from BRepOffset; L : in out ListOfShape from TopTools) ---Purpose: Stores in all the edges of Type -- on the vertex . is static; Edges (me; F : Face from TopoDS; T : Type from BRepOffset; L : in out ListOfShape from TopTools) ---Purpose: Stores in all the edges of Type -- on the face . is static; TangentEdges(me; Edge : Edge from TopoDS; Vertex : Vertex from TopoDS; Edges : in out ListOfShape from TopTools) ---Purpose: set in all the Edges of which are -- tangent to at the vertex . is static; HasAncestor (me ; S : Shape from TopoDS) returns Boolean from Standard is static; Ancestors (me ; S : Shape from TopoDS) ---C++: return const & returns ListOfShape from TopTools is static; Explode (me; L : in out ListOfShape from TopTools; Type : in Type from BRepOffset) ---Purpose: Explode in compounds of faces where -- all the connex edges are of type is static; Explode (me; L : in out ListOfShape from TopTools; Type1 : in Type from BRepOffset; Type2 : in Type from BRepOffset) ---Purpose: Explode in compounds of faces where -- all the connex edges are of type or is static; AddFaces(me; Face : Face from TopoDS; Co : in out Compound from TopoDS; Map : in out MapOfShape from TopTools; Type : in Type from BRepOffset) ---Purpose: Add in the faces of the shell containing -- where all the connex edges are of type . is static; AddFaces(me; Face : Face from TopoDS; Co : in out Compound from TopoDS; Map : in out MapOfShape from TopTools; Type1 : in Type from BRepOffset; Type2 : in Type from BRepOffset) ---Purpose: Add in the faces of the shell containing -- where all the connex edges are of type or . is static; fields myDone : Boolean from Standard; myShape : Shape from TopoDS; mapEdgeType : DataMapOfShapeListOfInterval from BRepOffset; ancestors : IndexedDataMapOfShapeListOfShape from TopTools; angle : Real from Standard; end Analyse;