Integration of OCCT 6.5.0 from SVN
[occt.git] / src / StepShape / StepShape_PlusMinusTolerance.cdl
CommitLineData
7fd59977 1-- File: StepShape_PlusMinusTolerance.cdl
2-- Created: Tue Apr 24 14:05:33 2001
3-- Author: Christian CAILLET
4-- <cky@photox.paris1.matra-dtv.fr>
5---Copyright: Matra Datavision 2001
6
7class PlusMinusTolerance from StepShape inherits TShared
8
9 ---Purpose : Added for Dimensional Tolerances
10
11uses
12 ToleranceMethodDefinition from StepShape,
13 DimensionalCharacteristic from StepShape
14
15is
16
17 Create returns mutable PlusMinusTolerance;
18
19 Init (me : mutable;
20 range : ToleranceMethodDefinition from StepShape;
21 toleranced_dimension : DimensionalCharacteristic from StepShape);
22
23 Range (me) returns ToleranceMethodDefinition from StepShape;
24 SetRange (me : mutable; range : ToleranceMethodDefinition from StepShape);
25
26 TolerancedDimension (me) returns DimensionalCharacteristic from StepShape;
27 SetTolerancedDimension (me : mutable; toleranced_dimension : DimensionalCharacteristic from StepShape);
28
29fields
30
31 theRange : ToleranceMethodDefinition from StepShape;
32 theTolerancedDimension : DimensionalCharacteristic from StepShape;
33
34end PlusMinusTolerance;