1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-09-08 14:17:06 +03:00

Integration of OCCT 6.5.0 from SVN

This commit is contained in:
bugmaster
2011-03-16 07:30:28 +00:00
committed by bugmaster
parent 4903637061
commit 7fd59977df
16375 changed files with 3882564 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
-- File: StepRepr_ItemDefinedTransformation.cdl
-- Created: Wed Mar 26 14:38:45 1997
-- Author: Christian CAILLET
-- <cky@heliox.paris1.matra-dtv.fr>
---Copyright: Matra Datavision 1997
class ItemDefinedTransformation from StepRepr inherits TShared
---Purpose : Added from StepRepr Rev2 to Rev4
uses
HAsciiString from TCollection,
RepresentationItem from StepRepr
is
Create returns mutable ItemDefinedTransformation;
Init (me : mutable;
aName : HAsciiString from TCollection;
aDescription : HAsciiString from TCollection;
aTransformItem1 : RepresentationItem from StepRepr;
aTransformItem2 : RepresentationItem from StepRepr);
SetName (me : mutable; aName : HAsciiString from TCollection);
Name (me) returns HAsciiString from TCollection;
SetDescription (me : mutable; aDescription : HAsciiString from TCollection);
Description (me) returns HAsciiString from TCollection;
SetTransformItem1 (me : mutable; aItem : RepresentationItem from StepRepr);
TransformItem1 (me) returns RepresentationItem;
SetTransformItem2 (me : mutable; aItem : RepresentationItem from StepRepr);
TransformItem2 (me) returns RepresentationItem;
fields
theName : HAsciiString from TCollection;
theDescription : HAsciiString from TCollection;
theTransformItem1 : RepresentationItem from StepRepr;
theTransformItem2 : RepresentationItem from StepRepr;
end ItemDefinedTransformation;