mirror of
https://github.com/rive-app/rive-cpp.git
synced 2026-01-18 13:11:19 +01:00
19 lines
474 B
C++
19 lines
474 B
C++
#ifndef _RIVE_CUBIC_DETACHED_VERTEX_HPP_
|
|
#define _RIVE_CUBIC_DETACHED_VERTEX_HPP_
|
|
#include "generated/shapes/cubic_detached_vertex_base.hpp"
|
|
namespace rive
|
|
{
|
|
class CubicDetachedVertex : public CubicDetachedVertexBase
|
|
{
|
|
protected:
|
|
void computeIn() override;
|
|
void computeOut() override;
|
|
|
|
void inRotationChanged() override;
|
|
void inDistanceChanged() override;
|
|
void outRotationChanged() override;
|
|
void outDistanceChanged() override;
|
|
};
|
|
} // namespace rive
|
|
|
|
#endif |