blob: 03f948125d88d073f6690a126e83f6af1899052e [file] [log] [blame] [edit]
#include "rive/artboard.hpp"
#include "rive/shapes/points_common_path.hpp"
#include "rive/shapes/vertex.hpp"
#include "rive/shapes/path_vertex.hpp"
#include "rive/shapes/shape.hpp"
#include "rive/bones/skin.hpp"
#include "rive/span.hpp"
#include "rive/shapes/shape_path_flags.hpp"
using namespace rive;
bool PointsCommonPath::isClockwise() const
{
return (pathFlags() & (int)ShapePathFlags::isCounterClockwise) == 0;
}