mirror of
https://github.com/rive-app/rive-cpp.git
synced 2026-01-18 13:11:19 +01:00
16 lines
393 B
C++
16 lines
393 B
C++
#ifndef _RIVE_CUBIC_MIRRORED_VERTEX_HPP_
|
|
#define _RIVE_CUBIC_MIRRORED_VERTEX_HPP_
|
|
#include "generated/shapes/cubic_mirrored_vertex_base.hpp"
|
|
namespace rive
|
|
{
|
|
class CubicMirroredVertex : public CubicMirroredVertexBase
|
|
{
|
|
protected:
|
|
void computeIn() override;
|
|
void computeOut() override;
|
|
void rotationChanged() override;
|
|
void distanceChanged() override;
|
|
};
|
|
} // namespace rive
|
|
|
|
#endif |