#pragma once #include "../shape/Vector2.h" #include #include "../shape/Shape.h" class SvgParser { public: SvgParser(juce::String svgFile); ~SvgParser(); static void pathToShapes(juce::Path& path, std::vector>& shapes); std::vector> draw(); private: std::vector> shapes; };