blob: 1df08725732fbac8a25e813f47abefb74bb4196b [file] [log] [blame]
Matt Sullivan057c4e22020-07-10 14:21:44 -07001#ifndef _RIVE_PATH_VERTEX_HPP_
2#define _RIVE_PATH_VERTEX_HPP_
JCashbb1dc562021-08-09 17:58:35 +02003#include "rive/bones/weight.hpp"
4#include "rive/generated/shapes/path_vertex_base.hpp"
5#include "rive/math/mat2d.hpp"
csmartdalton9c3168e2022-10-03 20:23:45 +00006namespace rive
7{
8class PathVertex : public PathVertexBase
9{
Luigi Rossoc7d59762020-08-27 18:50:41 -070010
csmartdalton000e6282022-08-20 00:42:56 +000011public:
12 StatusCode onAddedDirty(CoreContext* context) override;
13 void markGeometryDirty() override;
14};
Matt Sullivan057c4e22020-07-10 14:21:44 -070015} // namespace rive
16
17#endif