1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-09 13:22:24 +03:00
Files
occt/src/IGESToBRep/IGESToBRep_TopoSurface.cdl
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

127 lines
4.5 KiB
Plaintext

-- Created on: 1994-04-21
-- Created by: s: Christophe GUYOT & Frederic UNTEREINER
-- Copyright (c) 1994-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 TopoSurface from IGESToBRep inherits CurveAndSurface from IGESToBRep
---Purpose : Provides methods to transfer topologic surfaces entities
-- from IGES to CASCADE.
uses
CurveAndSurface from IGESToBRep,
IGESEntity from IGESData,
RuledSurface from IGESGeom,
SurfaceOfRevolution from IGESGeom,
TabulatedCylinder from IGESGeom,
OffsetSurface from IGESGeom,
Plane from IGESGeom,
TrimmedSurface from IGESGeom,
BoundedSurface from IGESGeom,
PlaneSurface from IGESSolid,
SingleParent from IGESBasic,
Shape from TopoDS,
Face from TopoDS,
Pln from gp,
Trsf from gp,
Trsf2d from gp
is
Create returns TopoSurface;
---Purpose : Creates a tool TopoSurface ready to run, with
-- epsilons set to 1.E-04, TheModeTopo to True, the
-- optimization of the continuity to False.
Create(CS : CurveAndSurface from IGESToBRep) returns TopoSurface;
---Purpose : Creates a tool TopoSurface ready to run and sets its
-- fields as CS's.
Create(eps : Real;
epsGeom : Real;
epsCoeff : Real;
mode : Boolean;
modeapprox : Boolean;
optimized : Boolean)
returns TopoSurface;
---Purpose : Creates a tool TopoSurface ready to run.
TransferTopoSurface (me : in out;
start : IGESEntity from IGESData)
returns Shape from TopoDS;
TransferTopoBasicSurface (me : in out;
start : IGESEntity from IGESData)
returns Shape from TopoDS;
TransferRuledSurface (me : in out;
start : RuledSurface from IGESGeom)
returns Shape from TopoDS;
TransferSurfaceOfRevolution (me : in out;
start : SurfaceOfRevolution from IGESGeom)
returns Shape from TopoDS;
TransferTabulatedCylinder (me : in out;
start : TabulatedCylinder from IGESGeom)
returns Shape from TopoDS;
TransferOffsetSurface (me : in out;
start : OffsetSurface from IGESGeom)
returns Shape from TopoDS;
TransferTrimmedSurface (me : in out;
start : TrimmedSurface from IGESGeom)
returns Shape from TopoDS;
TransferBoundedSurface (me : in out;
start : BoundedSurface from IGESGeom)
returns Shape from TopoDS;
TransferPlane (me : in out;
start : Plane from IGESGeom)
returns Shape from TopoDS;
TransferPlaneSurface (me : in out;
start : PlaneSurface from IGESSolid)
returns Shape from TopoDS;
TransferPerforate (me : in out;
start : SingleParent from IGESBasic)
returns Shape from TopoDS;
TransferPlaneParts (me : in out;
start : Plane from IGESGeom;
gplan : out Pln from gp;
locat : out Trsf from gp;
first : Boolean)
returns Shape from TopoDS is private;
ParamSurface (me : in out;
start : IGESEntity from IGESData;
trans : out Trsf2d from gp;
uFact : out Real)
returns Shape from TopoDS;
-- ---Purpose : Set the surface parameters:
-- IsRevol : True for TabulatedCylinder or SurfaceOfRevolution
-- ParamU ,Paramv, Length used for 2d Curves parametrization.
fields
TheULength : Real from Standard;
end TopoSurface;