blob: 70cdd2cc30e232599c98b52d2593299b5372f814 [file]
#ifndef _RIVE_POINTS_PATH_HPP_
#define _RIVE_POINTS_PATH_HPP_
#include "bones/skinnable.hpp"
#include "generated/shapes/points_path_base.hpp"
namespace rive
{
class PointsPath : public PointsPathBase, public Skinnable
{
public:
bool isPathClosed() const override { return isClosed(); }
void buildDependencies() override;
void update(ComponentDirt value) override;
void markPathDirty() override;
void markSkinDirty() override;
const Mat2D& pathTransform() const override;
};
} // namespace rive
#endif