common: code refactoring
[platform/core/graphics/tizenvg.git] / src / lib / tvgRadialGradient.cpp
1 /*
2  * Copyright (c) 2020 Samsung Electronics Co., Ltd All Rights Reserved
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 #ifndef _TVG_RADIAL_GRADIENT_CPP_
18 #define _TVG_RADIAL_GRADIENT_CPP_
19
20 #include "tvgCommon.h"
21
22 /************************************************************************/
23 /* Internal Class Implementation                                        */
24 /************************************************************************/
25
26 struct RadialGradient::Impl
27 {
28     float cx, cy, radius;
29 };
30
31
32 /************************************************************************/
33 /* External Class Implementation                                        */
34 /************************************************************************/
35
36 RadialGradient::RadialGradient():pImpl(make_unique<Impl>())
37 {
38     _id = FILL_ID_RADIAL;
39 }
40
41
42 RadialGradient::~RadialGradient()
43 {
44 }
45
46
47 Result RadialGradient::radial(float cx, float cy, float radius) noexcept
48 {
49     if (radius < FLT_EPSILON) return Result::InvalidArguments;
50
51     IMPL->cx = cx;
52     IMPL->cy = cy;
53     IMPL->radius = radius;
54
55     return Result::Success;
56 }
57
58
59 Result RadialGradient::radial(float* cx, float* cy, float* radius) const noexcept
60 {
61     if (cx) *cx = IMPL->cx;
62     if (cy) *cy = IMPL->cy;
63     if (radius) *radius = IMPL->radius;
64
65     return Result::Success;
66 }
67
68
69 unique_ptr<RadialGradient> RadialGradient::gen() noexcept
70 {
71     auto fill = unique_ptr<RadialGradient>(new RadialGradient);
72     assert(fill);
73
74     return fill;
75 }
76
77 #endif /* _TVG_RADIAL_GRADIENT_CPP_ */