summaryrefslogtreecommitdiff
path: root/src/IGESDimen/IGESDimen_DimensionUnits.cxx
blob: 6cb1e0abfe15806bde28637e43525037373e4f6f (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
//--------------------------------------------------------------------
//
//  File Name : IGESDimen_DimensionUnits.cxx
//  Date      :
//  Author    : CKY / Contract Toubro-Larsen
//  Copyright : MATRA-DATAVISION 1993
//
//--------------------------------------------------------------------

#include <IGESDimen_DimensionUnits.ixx>


    IGESDimen_DimensionUnits::IGESDimen_DimensionUnits ()    {  }

    void  IGESDimen_DimensionUnits::Init
  (const Standard_Integer nbPropVal,
   const Standard_Integer aSecondPos, const Standard_Integer aUnitsInd,
   const Standard_Integer aCharSet,
   const Handle(TCollection_HAsciiString)& aFormat,
   const Standard_Integer aFracFlag,  const Standard_Integer aPrecision)
{
  theNbPropertyValues = nbPropVal;
  theSecondaryDimenPosition = aSecondPos;
  theUnitsIndicator         = aUnitsInd;
  theCharacterSet           = aCharSet;
  theFormatString           = aFormat;
  theFractionFlag           = aFracFlag;
  thePrecision              = aPrecision;
  InitTypeAndForm(406,28);
}


    Standard_Integer  IGESDimen_DimensionUnits::NbPropertyValues () const
{
  return theNbPropertyValues;
}

    Standard_Integer  IGESDimen_DimensionUnits::SecondaryDimenPosition () const
{
  return theSecondaryDimenPosition;
}

    Standard_Integer  IGESDimen_DimensionUnits::UnitsIndicator () const
{
  return theUnitsIndicator;
}

    Standard_Integer  IGESDimen_DimensionUnits::CharacterSet () const
{
  return theCharacterSet;
}

    Handle(TCollection_HAsciiString)  IGESDimen_DimensionUnits::FormatString () const
{
  return theFormatString;
}

    Standard_Integer  IGESDimen_DimensionUnits::FractionFlag () const
{
  return theFractionFlag;
}

    Standard_Integer  IGESDimen_DimensionUnits::PrecisionOrDenominator () const
{
  return thePrecision;
}