#pragma once #include class SvgParser { public: SvgParser(juce::String svgFile); ~SvgParser(); static void pathToShapes(juce::Path& path, std::vector>& shapes, bool normalise = false); std::vector> draw(); private: std::vector> shapes; };