blob: 592ef825e0bdf3f49ea7b21bf0d5843d16f3e8b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
-- File: StepShape_ToleranceValue.cdl
-- Created: Tue Apr 24 13:53:43 2001
-- Author: Christian CAILLET
-- ckyd@photox.paris1.matra-dtv.fr>
---Copyright: Matra Datavision 2001
class ToleranceValue from StepShape inherits TShared
---Purpose : Added for Dimensional Tolerances
uses
MeasureWithUnit from StepBasic
is
Create returns mutable ToleranceValue;
Init (me : mutable; lower_bound, upper_bound : MeasureWithUnit from StepBasic);
LowerBound (me) returns MeasureWithUnit from StepBasic;
SetLowerBound (me : mutable; lower_bound : MeasureWithUnit from StepBasic);
UpperBound (me) returns MeasureWithUnit from StepBasic;
SetUpperBound (me : mutable; upper_bound : MeasureWithUnit from StepBasic);
fields
theLowerBound : MeasureWithUnit from StepBasic;
theUpperBound : MeasureWithUnit from StepBasic;
end ToleranceValue;
|