mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-25 17:43:48 +08:00
Redundant keyword 'mutable' removed in CDL files. In IGESConvGeom_GeomBuilder, unused methods MakeXY() and MakeXYZ() removed. Method StepAP214_AutoDesignGroupAssignment::Init() replicating same method of the base class is removed as it causes CDL extraction error after above (seemingly irrelevant) changes.
174 lines
6.2 KiB
Plaintext
174 lines
6.2 KiB
Plaintext
-- Created on: 1995-04-25
|
|
-- Created by: Marie Jose MARTZ
|
|
-- 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 Entity from BRepToIGESBRep inherits BREntity from BRepToIGES
|
|
|
|
|
|
---Purpose : provides methods to transfer BRep entity from CASCADE to IGESBRep.
|
|
|
|
uses
|
|
|
|
Geometry from Geom,
|
|
Shape from TopoDS,
|
|
Vertex from TopoDS,
|
|
Edge from TopoDS,
|
|
Wire from TopoDS,
|
|
Face from TopoDS,
|
|
Shell from TopoDS,
|
|
Solid from TopoDS,
|
|
CompSolid from TopoDS,
|
|
Compound from TopoDS,
|
|
IndexedMapOfShape from TopTools,
|
|
IndexedMapOfTransient from TColStd,
|
|
IGESEntity from IGESData,
|
|
IGESModel from IGESData,
|
|
VertexList from IGESSolid,
|
|
EdgeList from IGESSolid,
|
|
Loop from IGESSolid,
|
|
Face from IGESSolid,
|
|
Shell from IGESSolid,
|
|
ManifoldSolid from IGESSolid,
|
|
CString from Standard,
|
|
FinderProcess from Transfer
|
|
|
|
is
|
|
|
|
Create
|
|
returns Entity from BRepToIGESBRep;
|
|
---Purpose : Creates a tool Entity
|
|
|
|
|
|
Clear (me : in out);
|
|
---Purpose : Clears the contents of the fields
|
|
|
|
|
|
TransferVertexList (me : in out);
|
|
---Purpose : Create the VertexList entity
|
|
|
|
|
|
IndexVertex (me;
|
|
myvertex : Vertex from TopoDS)
|
|
returns Integer
|
|
---Purpose: Returns the index of <myvertex> in "myVertices"
|
|
is static;
|
|
|
|
|
|
AddVertex (me : in out;
|
|
myvertex : Vertex from TopoDS)
|
|
returns Integer
|
|
---Purpose: Stores <myvertex> in "myVertices"
|
|
-- Returns the index of <myvertex>.
|
|
is static;
|
|
|
|
|
|
TransferEdgeList (me : in out);
|
|
---Purpose : Transfert an Edge entity from TopoDS to IGES
|
|
|
|
|
|
IndexEdge (me;
|
|
myedge : Edge from TopoDS)
|
|
returns Integer
|
|
---Purpose: Returns the index of <myedge> in "myEdges"
|
|
is static;
|
|
|
|
|
|
AddEdge (me : in out;
|
|
myedge : Edge from TopoDS;
|
|
mycurve3d : IGESEntity from IGESData)
|
|
returns Integer
|
|
---Purpose: Stores <myedge> in "myEdges" and <mycurve3d> in "myCurves".
|
|
-- Returns the index of <myedge>.
|
|
is static;
|
|
|
|
|
|
TransferShape (me : in out; start : Shape from TopoDS)
|
|
returns IGESEntity from IGESData is redefined;
|
|
---Purpose : Returns the result of the transfert of any Shape
|
|
-- If the transfer has failed, this member return a NullEntity.
|
|
|
|
|
|
TransferEdge (me : in out;
|
|
myedge : Edge from TopoDS)
|
|
returns IGESEntity from IGESData;
|
|
---Purpose : Transfert an Edge entity from TopoDS to IGES
|
|
-- If this Entity could not be converted, this member returns a NullEntity.
|
|
|
|
|
|
TransferEdge (me : in out;
|
|
myedge : Edge from TopoDS;
|
|
myface : Face from TopoDS;
|
|
length : in Real from Standard)
|
|
returns IGESEntity from IGESData;
|
|
---Purpose : Transfert an Edge entity from TopoDS to IGES
|
|
-- If this Entity could not be converted, this member returns a NullEntity.
|
|
|
|
|
|
TransferWire (me : in out;
|
|
mywire : Wire from TopoDS;
|
|
myface : Face from TopoDS;
|
|
length : in Real from Standard)
|
|
returns Loop from IGESSolid;
|
|
---Purpose : Transfert a Wire entity from TopoDS to IGES.
|
|
-- Returns the curve associated to mywire in the parametric space of myface.
|
|
-- If this Entity could not be converted, this member returns a NullEntity.
|
|
|
|
|
|
TransferFace (me : in out;
|
|
start : Face from TopoDS)
|
|
returns Face from IGESSolid;
|
|
---Purpose : Transfert a Face entity from TopoDS to IGES
|
|
-- If this Entity could not be converted, this member returns a NullEntity.
|
|
|
|
|
|
TransferShell (me : in out;
|
|
start : Shell from TopoDS)
|
|
returns Shell from IGESSolid;
|
|
---Purpose : Transfert an Shell entity from TopoDS to IGES
|
|
-- If this Entity could not be converted, this member returns a NullEntity.
|
|
|
|
|
|
TransferSolid (me : in out;
|
|
start : Solid from TopoDS)
|
|
returns ManifoldSolid from IGESSolid;
|
|
---Purpose : Transfert a Solid entity from TopoDS to IGES
|
|
-- If this Entity could not be converted, this member returns a NullEntity.
|
|
|
|
|
|
TransferCompSolid (me : in out;
|
|
start : CompSolid from TopoDS)
|
|
returns IGESEntity from IGESData;
|
|
---Purpose : Transfert an CompSolid entity from TopoDS to IGES
|
|
-- If this Entity could not be converted, this member returns a NullEntity.
|
|
|
|
|
|
TransferCompound (me : in out;
|
|
start : Compound from TopoDS)
|
|
returns IGESEntity from IGESData;
|
|
---Purpose : Transfert a Compound entity from TopoDS to IGES
|
|
-- If this Entity could not be converted, this member returns a NullEntity.
|
|
|
|
fields
|
|
|
|
myVertices : IndexedMapOfShape from TopTools;
|
|
myEdges : IndexedMapOfShape from TopTools;
|
|
myCurves : IndexedMapOfTransient from TColStd;
|
|
myEdgeList : EdgeList from IGESSolid;
|
|
myVertexList : VertexList from IGESSolid;
|
|
|
|
|
|
end Entity;
|
|
|