submodule: add rive-cpp to rive-tizen as submodule
[platform/core/uifw/rive-tizen.git] / submodule / include / shapes / ellipse.hpp
1 #ifndef _RIVE_ELLIPSE_HPP_
2 #define _RIVE_ELLIPSE_HPP_
3 #include "generated/shapes/ellipse_base.hpp"
4 #include "shapes/cubic_detached_vertex.hpp"
5
6 namespace rive
7 {
8         class Ellipse : public EllipseBase
9         {
10                 CubicDetachedVertex m_Vertex1, m_Vertex2, m_Vertex3, m_Vertex4;
11
12         public:
13                 Ellipse();
14                 void update(ComponentDirt value) override;
15         };
16 } // namespace rive
17
18 #endif