mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-05-01 10:26:12 +03: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.
76 lines
3.1 KiB
Plaintext
76 lines
3.1 KiB
Plaintext
-- Created on: 1995-03-15
|
|
-- Created by: Christian CAILLET
|
|
-- 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 Controller from IGESControl inherits Controller from XSControl
|
|
|
|
---Purpose : Controller for IGES-5.1
|
|
|
|
uses
|
|
|
|
CString,
|
|
Protocol from Interface,
|
|
InterfaceModel from Interface,
|
|
WorkLibrary from IFSelect,
|
|
ReturnStatus from IFSelect,
|
|
ActorOfTransientProcess from Transfer,
|
|
FinderProcess from Transfer,
|
|
ActorOfFinderProcess from Transfer,
|
|
WorkSession from XSControl,
|
|
Shape from TopoDS
|
|
|
|
is
|
|
|
|
Create (modefnes : Boolean = Standard_False)
|
|
returns Controller from IGESControl;
|
|
---Purpose : Initializes the use of IGES Norm (the first time) and returns
|
|
-- a Controller for IGES-5.1
|
|
-- If <modefnes> is True, sets it to internal FNES format
|
|
|
|
NewModel (me) returns InterfaceModel from Interface;
|
|
---Purpose : Creates a new empty Model ready to receive data of the Norm.
|
|
-- It is taken from IGES Template Model
|
|
|
|
ActorRead (me; model : InterfaceModel)
|
|
returns ActorOfTransientProcess from Transfer;
|
|
---Purpose : Returns the Actor for Read attached to the pair (norm,appli)
|
|
-- It is an Actor from IGESToBRep, adapted from an IGESModel :
|
|
-- Unit, tolerances
|
|
|
|
TransferWriteShape (me; shape : Shape from TopoDS;
|
|
FP : FinderProcess from Transfer;
|
|
model : InterfaceModel from Interface;
|
|
modetrans : Integer = 0)
|
|
returns ReturnStatus is redefined;
|
|
---Purpose : Takes one Shape and transfers it to the InterfaceModel
|
|
-- (already created by NewModel for instance)
|
|
-- <modetrans> is to be interpreted by each kind of XstepAdaptor
|
|
-- Returns a status : 0 OK 1 No result 2 Fail -1 bad modeshape
|
|
-- -2 bad model (requires an IGESModel)
|
|
-- modeshape : 0 groupe of face (version < 5.1)
|
|
-- 1 BREP-version 5.1 of IGES
|
|
|
|
Init (myclass) returns Boolean;
|
|
---Purpose : Standard Initialisation. It creates a Controller for IGES and
|
|
-- records it to various names, available to select it later
|
|
-- Returns True when done, False if could not be done
|
|
-- Also, it creates and records an Adaptor for FNES
|
|
Customise (me: mutable; WS : in out WorkSession from XSControl) is redefined;
|
|
fields
|
|
|
|
themode : Boolean;
|
|
|
|
end Controller;
|