Tizen 2.1 base
[framework/osp/uifw.git] / src / ui / effects / inc / renderer / math / FUiEffects_RendererMathVector2Traits.h
1 //
2 // Open Service Platform
3 // Copyright (c) 2012-2013 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Flora License, Version 1.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 //     http://floralicense.org/license/
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an AS IS BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 /**
19  * @file       FUiEffects_RendererMathVector2Traits.h
20  * @brief      The Vector2Traits class
21  *
22  */
23
24 #ifndef _FUI_EFFECTS_INTERNAL_RENDERER_MATH_VECTOR2_TRAITS_H_
25 #define _FUI_EFFECTS_INTERNAL_RENDERER_MATH_VECTOR2_TRAITS_H_
26
27 #include <renderer/math/FUiEffects_RendererMathVectorTraits.h>
28
29 namespace Tizen { namespace Ui { namespace Effects { namespace _Renderer { namespace Math
30 {
31
32 template<typename T>
33 class VectorTraits<T, 2> :
34         public VectorTraitsBase<T, 2>
35 {
36 public:
37         typedef Vector<T, 2> VectorType;
38         typedef VectorTraitsBase<T, 2> VectorTraitsBaseType;
39         typedef typename VectorTraitsBaseType::TypeReference TypeReference;
40
41         using VectorTraitsBaseType::data;
42
43         inline T& X(void);
44         inline const TypeReference X(void) const;
45
46         inline T& Y(void);
47         inline const TypeReference Y(void) const;
48
49         inline VectorType& Set(const TypeReference x, const TypeReference y);
50 };
51
52 template<typename T>
53 T& VectorTraits<T, 2>::X(void)
54 {
55         return data[0];
56 }
57
58 template<typename T>
59 const typename VectorTraits<T, 2>::TypeReference VectorTraits<T, 2>::X(void) const
60 {
61         return data[0];
62 }
63
64 template<typename T>
65 T& VectorTraits<T, 2>::Y(void)
66 {
67         return data[1];
68 }
69
70 template<typename T>
71 const typename VectorTraits<T, 2>::TypeReference VectorTraits<T, 2>::Y(void) const
72 {
73         return data[1];
74 }
75
76 template<typename T>
77 typename VectorTraits<T, 2>::VectorType& VectorTraits<T, 2>::Set(const TypeReference x, const TypeReference y)
78 {
79         data[0] = x;
80         data[1] = y;
81         return *(static_cast<VectorType*>(this));
82 }
83
84 }}}}} //Tizen::Ui::Effects::_Renderer::Math
85
86
87 #endif //_FUI_EFFECTS_INTERNAL_RENDERER_MATH_VECTOR2_TRAITS_H_