mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-06-12 09:59:03 +08:00
15 lines
489 B
C++
Executable File
15 lines
489 B
C++
Executable File
#include <StepShape_PrecisionQualifier.ixx>
|
|
|
|
StepShape_PrecisionQualifier::StepShape_PrecisionQualifier () { }
|
|
|
|
void StepShape_PrecisionQualifier::Init
|
|
(const Standard_Integer precision_value)
|
|
{ thePrecisionValue = precision_value; }
|
|
|
|
Standard_Integer StepShape_PrecisionQualifier::PrecisionValue () const
|
|
{ return thePrecisionValue; }
|
|
|
|
void StepShape_PrecisionQualifier::SetPrecisionValue
|
|
(const Standard_Integer precision_value)
|
|
{ thePrecisionValue = precision_value; }
|