1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-09-03 14:10:33 +03:00
Files
occt/src/StepGeom/StepGeom_TrimmedCurve.cdl
abv 6e33d3ced2 0024830: Remove redundant keyword 'mutable' in CDL declarations
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.
2014-05-29 14:58:25 +04:00

72 lines
2.5 KiB
Plaintext

-- Created on: 1995-12-01
-- Created by: EXPRESS->CDL V0.2 Translator
-- 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 TrimmedCurve from StepGeom
inherits BoundedCurve from StepGeom
uses
Curve from StepGeom,
HArray1OfTrimmingSelect from StepGeom,
Boolean from Standard,
TrimmingPreference from StepGeom,
TrimmingSelect from StepGeom,
HAsciiString from TCollection
is
Create returns TrimmedCurve;
---Purpose: Returns a TrimmedCurve
Init (me : mutable;
aName : HAsciiString from TCollection) is redefined;
Init (me : mutable;
aName : HAsciiString from TCollection;
aBasisCurve : Curve from StepGeom;
aTrim1 : HArray1OfTrimmingSelect from StepGeom;
aTrim2 : HArray1OfTrimmingSelect from StepGeom;
aSenseAgreement : Boolean from Standard;
aMasterRepresentation : TrimmingPreference from StepGeom) is virtual;
-- Specific Methods for Field Data Access --
SetBasisCurve(me : mutable; aBasisCurve : Curve);
BasisCurve (me) returns Curve;
SetTrim1(me : mutable; aTrim1 : HArray1OfTrimmingSelect);
Trim1 (me) returns HArray1OfTrimmingSelect;
Trim1Value (me; num : Integer) returns TrimmingSelect;
NbTrim1 (me) returns Integer;
SetTrim2(me : mutable; aTrim2 : HArray1OfTrimmingSelect);
Trim2 (me) returns HArray1OfTrimmingSelect;
Trim2Value (me; num : Integer) returns TrimmingSelect;
NbTrim2 (me) returns Integer;
SetSenseAgreement(me : mutable; aSenseAgreement : Boolean);
SenseAgreement (me) returns Boolean;
SetMasterRepresentation(me : mutable; aMasterRepresentation : TrimmingPreference);
MasterRepresentation (me) returns TrimmingPreference;
fields
basisCurve : Curve from StepGeom;
trim1 : HArray1OfTrimmingSelect from StepGeom; -- a SelectType
trim2 : HArray1OfTrimmingSelect from StepGeom; -- a SelectType
senseAgreement : Boolean from Standard;
masterRepresentation : TrimmingPreference from StepGeom; -- an Enumeration
end TrimmedCurve;