License conversion from Flora to Apache 2.0
[platform/core/uifw/dali-core.git] / dali / public-api / math / radian.cpp
1 /*
2  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 // CLASS HEADER
19 #include <dali/public-api/math/radian.h>
20
21 // INTERNAL INCLUDES
22 #include <dali/public-api/common/constants.h>
23 #include <dali/public-api/math/degree.h>
24
25 namespace
26 {
27 const float PI_OVER_180 = Dali::Math::PI/180.0f;
28 }
29
30 namespace Dali
31 {
32
33 Radian::Radian( float value )
34 : mValue( value )
35 {
36 }
37
38 Radian::Radian( const Degree& degree )
39 : mValue( degree * PI_OVER_180 )
40 {
41 }
42
43 bool Radian::operator==( const Radian& rhs ) const
44 {
45   return fabsf( mValue - rhs.mValue ) < GetRangedEpsilon( mValue, rhs.mValue );
46 }
47
48 bool Radian::operator!=( const Radian& rhs ) const
49 {
50   return !(this->operator==(rhs));
51 }
52
53 bool Radian::operator<( const Radian& rhs ) const
54 {
55   return mValue < rhs.mValue;
56 }
57
58 Radian& Radian::operator=( const float value )
59 {
60   mValue = value;
61   return *this;
62 }
63
64 Radian& Radian::operator=( const Degree& rhs )
65 {
66   mValue = rhs * PI_OVER_180;
67   return *this;
68 }
69
70 Radian::operator const float&() const
71 {
72   return mValue;
73 }
74
75 Radian::operator float&()
76 {
77   return mValue;
78 }
79
80 } // namespace Dali