#pragma once #include #include "../shape/Shape.h" #include "SvgState.h" class MoveTo { public: static std::vector> absolute(SvgState& state, std::vector& args); static std::vector> relative(SvgState& state, std::vector& args); private: static std::vector> parseMoveTo(SvgState& state, std::vector& args, bool isAbsolute); };