Files
rive-cpp/include/shapes/cubic_mirrored_vertex.hpp
2020-08-16 18:20:11 -07:00

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