0031682: Visualization - Prs3d_ShadingAspect::SetTransparency() has no effect with...
[occt.git] / src / IGESDimen / IGESDimen_DimensionUnits.cxx
1 // Created by: CKY / Contract Toubro-Larsen
2 // Copyright (c) 1993-1999 Matra Datavision
3 // Copyright (c) 1999-2014 OPEN CASCADE SAS
4 //
5 // This file is part of Open CASCADE Technology software library.
6 //
7 // This library is free software; you can redistribute it and/or modify it under
8 // the terms of the GNU Lesser General Public License version 2.1 as published
9 // by the Free Software Foundation, with special exception defined in the file
10 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11 // distribution for complete text of the license and disclaimer of any warranty.
12 //
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement.
15
16 //--------------------------------------------------------------------
17 //--------------------------------------------------------------------
18
19 #include <IGESDimen_DimensionUnits.hxx>
20 #include <Standard_Type.hxx>
21 #include <TCollection_HAsciiString.hxx>
22
23 IMPLEMENT_STANDARD_RTTIEXT(IGESDimen_DimensionUnits,IGESData_IGESEntity)
24
25 IGESDimen_DimensionUnits::IGESDimen_DimensionUnits ()    {  }
26
27     void  IGESDimen_DimensionUnits::Init
28   (const Standard_Integer nbPropVal,
29    const Standard_Integer aSecondPos, const Standard_Integer aUnitsInd,
30    const Standard_Integer aCharSet,
31    const Handle(TCollection_HAsciiString)& aFormat,
32    const Standard_Integer aFracFlag,  const Standard_Integer aPrecision)
33 {
34   theNbPropertyValues = nbPropVal;
35   theSecondaryDimenPosition = aSecondPos;
36   theUnitsIndicator         = aUnitsInd;
37   theCharacterSet           = aCharSet;
38   theFormatString           = aFormat;
39   theFractionFlag           = aFracFlag;
40   thePrecision              = aPrecision;
41   InitTypeAndForm(406,28);
42 }
43
44
45     Standard_Integer  IGESDimen_DimensionUnits::NbPropertyValues () const
46 {
47   return theNbPropertyValues;
48 }
49
50     Standard_Integer  IGESDimen_DimensionUnits::SecondaryDimenPosition () const
51 {
52   return theSecondaryDimenPosition;
53 }
54
55     Standard_Integer  IGESDimen_DimensionUnits::UnitsIndicator () const
56 {
57   return theUnitsIndicator;
58 }
59
60     Standard_Integer  IGESDimen_DimensionUnits::CharacterSet () const
61 {
62   return theCharacterSet;
63 }
64
65     Handle(TCollection_HAsciiString)  IGESDimen_DimensionUnits::FormatString () const
66 {
67   return theFormatString;
68 }
69
70     Standard_Integer  IGESDimen_DimensionUnits::FractionFlag () const
71 {
72   return theFractionFlag;
73 }
74
75     Standard_Integer  IGESDimen_DimensionUnits::PrecisionOrDenominator () const
76 {
77   return thePrecision;
78 }