mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-14 20:51:41 +08:00
29 lines
593 B
Plaintext
Executable File
29 lines
593 B
Plaintext
Executable File
-- File: StepShape_PrecisionQualifier.cdl
|
|
-- Created: Tue Apr 24 14:12:24 2001
|
|
-- Author: Christian CAILLET
|
|
-- <cky@photox.paris1.matra-dtv.fr>
|
|
---Copyright: Matra Datavision 2001
|
|
|
|
|
|
class PrecisionQualifier from StepShape inherits TShared
|
|
|
|
---Purpose : Added for Dimensional Tolerances
|
|
|
|
uses
|
|
Integer
|
|
|
|
is
|
|
|
|
Create returns mutable PrecisionQualifier;
|
|
|
|
Init (me : mutable; precision_value : Integer);
|
|
|
|
PrecisionValue (me) returns Integer;
|
|
SetPrecisionValue (me : mutable; precision_value : Integer);
|
|
|
|
fields
|
|
|
|
thePrecisionValue : Integer;
|
|
|
|
end PrecisionQualifier;
|