summaryrefslogtreecommitdiff
path: root/src/Units/Units_ShiftedToken.cxx
blob: 00e0a16c97ba3f51e6ee5b6e341acdec2b51374c (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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
// File:	Units_ShiftedToken.cxx
// Created:	Thu Nov  5 15:23:49 1992
// Author:	Gilles DEBARBOUILLE
//		<gde@bravox>


#include <Units_ShiftedToken.ixx>
#include <TCollection_AsciiString.hxx>

#define XTRACE 1

//=======================================================================
//function : Units_ShiftedToken
//purpose  : 
//=======================================================================

Units_ShiftedToken::Units_ShiftedToken(const Standard_CString aword,
				       const Standard_CString amean,
				       const Standard_Real avalue,
				       const Standard_Real amove,
				       const Handle(Units_Dimensions)& adimensions)
     : Units_Token(aword,amean,avalue,adimensions)
{
  themove = amove;
#ifdef TRACE
  cout << " CREATES ShiftedToken " << endl;
  Dump(0,0);
#endif
}

//=======================================================================
//function : Creates
//purpose  : 
//=======================================================================

Handle(Units_Token) Units_ShiftedToken::Creates() const
{
  TCollection_AsciiString word = Word();
  TCollection_AsciiString mean = Mean();
  return new Units_ShiftedToken(word.ToCString(),mean.ToCString(),Value(),Move(),Dimensions());
}

//=======================================================================
//function : Move
//purpose  : 
//=======================================================================

Standard_Real Units_ShiftedToken::Move() const
{
  return themove;
}

//=======================================================================
//function : Multiplied
//purpose  : 
//=======================================================================

Standard_Real Units_ShiftedToken::Multiplied (const Standard_Real avalue) const
{
  return (avalue + themove) * Value();
}

//=======================================================================
//function : Divided
//purpose  : 
//=======================================================================

Standard_Real Units_ShiftedToken::Divided (const Standard_Real avalue) const
{
  return (avalue / Value()) - themove;
}

//=======================================================================
//function : Dump
//purpose  : 
//=======================================================================

void Units_ShiftedToken::Dump(const Standard_Integer ashift,
			      const Standard_Integer alevel) const
{
  Units_Token::Dump(ashift,alevel);
  for(int i=0; i<ashift; i++)cout<<"  ";
  cout<<"  move  : "<<themove<<endl;
}

void Units_ShiftedToken::Destroy () {

#ifdef TRACE
  cout << " DESTROIES ShiftedToken " << endl;
  Dump(0,0);
#endif
}