Clean up the code to build successfully on macOS
[platform/core/uifw/dali-core.git] / dali / public-api / animation / path.cpp
1 /*
2  * Copyright (c) 2020 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/internal/event/animation/path-impl.h>
20 #include <dali/public-api/animation/path.h>
21
22 // INTERNAL INCLUDES
23
24 namespace Dali
25 {
26 Path Path::New()
27 {
28   Internal::Path* internal = Internal::Path::New();
29   return Path(internal);
30 }
31
32 Path Path::DownCast(BaseHandle handle)
33 {
34   return Path(dynamic_cast<Dali::Internal::Path*>(handle.GetObjectPtr()));
35 }
36
37 Path::Path()
38 {
39 }
40
41 Path::~Path()
42 {
43 }
44
45 Path::Path(const Path& handle) = default;
46
47 Path::Path(Internal::Path* internal)
48 : Handle(internal)
49 {
50 }
51
52 Path& Path::operator=(const Path& rhs) = default;
53
54 Path::Path(Path&& rhs) = default;
55
56 Path& Path::operator=(Path&& rhs) = default;
57
58 void Path::AddPoint(const Vector3& point)
59 {
60   GetImplementation(*this).AddPoint(point);
61 }
62
63 void Path::AddControlPoint(const Vector3& point)
64 {
65   GetImplementation(*this).AddControlPoint(point);
66 }
67
68 void Path::GenerateControlPoints(float curvature)
69 {
70   GetImplementation(*this).GenerateControlPoints(curvature);
71 }
72
73 void Path::Sample(float progress, Vector3& position, Vector3& tangent) const
74 {
75   GetImplementation(*this).Sample(progress, position, tangent);
76 }
77
78 Vector3& Path::GetPoint(size_t index)
79 {
80   return GetImplementation(*this).GetPoint(static_cast<uint32_t>(index));
81 }
82
83 Vector3& Path::GetControlPoint(size_t index)
84 {
85   return GetImplementation(*this).GetControlPoint(static_cast<uint32_t>(index));
86 }
87
88 size_t Path::GetPointCount() const
89 {
90   return GetImplementation(*this).GetPointCount();
91 }
92
93 } // namespace Dali