mirror of
https://github.com/rive-app/rive-cpp.git
synced 2026-01-18 21:21:17 +01:00
18 lines
365 B
C++
18 lines
365 B
C++
#ifndef _RIVE_ELLIPSE_HPP_
|
|
#define _RIVE_ELLIPSE_HPP_
|
|
#include "generated/shapes/ellipse_base.hpp"
|
|
#include "shapes/cubic_detached_vertex.hpp"
|
|
|
|
namespace rive
|
|
{
|
|
class Ellipse : public EllipseBase
|
|
{
|
|
CubicDetachedVertex m_Vertex1, m_Vertex2, m_Vertex3, m_Vertex4;
|
|
|
|
public:
|
|
Ellipse();
|
|
void update(ComponentDirt value) override;
|
|
};
|
|
} // namespace rive
|
|
|
|
#endif |