mirror of
https://github.com/rive-app/rive-cpp.git
synced 2026-01-18 21:21:17 +01:00
17 lines
443 B
C++
17 lines
443 B
C++
#ifndef _RIVE_CUBIC_ASYMMETRIC_VERTEX_HPP_
|
|
#define _RIVE_CUBIC_ASYMMETRIC_VERTEX_HPP_
|
|
#include "generated/shapes/cubic_asymmetric_vertex_base.hpp"
|
|
namespace rive
|
|
{
|
|
class CubicAsymmetricVertex : public CubicAsymmetricVertexBase
|
|
{
|
|
protected:
|
|
void computeIn() override;
|
|
void computeOut() override;
|
|
void rotationChanged() override;
|
|
void inDistanceChanged() override;
|
|
void outDistanceChanged() override;
|
|
};
|
|
} // namespace rive
|
|
|
|
#endif |