0033661: Data Exchange, Step Import - Tessellated GDTs are not imported
[occt.git] / src / Prs3d / Prs3d_DimensionUnits.hxx
CommitLineData
60bf98ae 1// Created on: 2013-11-11
2// Created by: Anastasia BORISOVA
973c2be1 3// Copyright (c) 2013-2014 OPEN CASCADE SAS
60bf98ae 4//
973c2be1 5// This file is part of Open CASCADE Technology software library.
60bf98ae 6//
d5f74e42 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
973c2be1 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.
60bf98ae 12//
973c2be1 13// Alternatively, this file may be used under the terms of Open CASCADE
14// commercial license or contractual agreement.
60bf98ae 15
5bd54bef 16#ifndef Prs3d_DimensionUnits_HeaderFile
17#define Prs3d_DimensionUnits_HeaderFile
60bf98ae 18
19#include <TCollection_AsciiString.hxx>
20
21//! This class provides units for two dimension groups:
316ea293 22//! - lengths (length, radius, diameter)
60bf98ae 23//! - angles
24class Prs3d_DimensionUnits
25{
26public:
27
28 //! Default constructor. Sets meters as default length units
29 //! and radians as default angle units.
30 Prs3d_DimensionUnits()
31 : myLengthUnits ("m"),
32 myAngleUnits ("rad")
33 {}
34
35 Prs3d_DimensionUnits (const Prs3d_DimensionUnits& theUnits)
36 : myLengthUnits (theUnits.GetLengthUnits()),
37 myAngleUnits (theUnits.GetAngleUnits())
38 {}
39
40 //! Sets angle units
4e1bc39a 41 void SetAngleUnits (const TCollection_AsciiString& theUnits) { myAngleUnits = theUnits; }
60bf98ae 42
43 //! @return angle units
44 const TCollection_AsciiString& GetAngleUnits() const { return myAngleUnits; }
45
46 //! Sets length units
4e1bc39a 47 void SetLengthUnits (const TCollection_AsciiString& theUnits) { myLengthUnits = theUnits; }
60bf98ae 48
49 //! @return length units
50 const TCollection_AsciiString& GetLengthUnits() const { return myLengthUnits; }
51
52private:
53
54 TCollection_AsciiString myLengthUnits;
55 TCollection_AsciiString myAngleUnits;
4e1bc39a 56
60bf98ae 57};
4e1bc39a 58
60bf98ae 59#endif