1#ifndef FASTUIDRAW_DEMO_PATH_UTIL_HPP
2#define FASTUIDRAW_DEMO_PATH_UTIL_HPP
3
4#include <string>
5#include <vector>
6#include <fastuidraw/path.hpp>
7
8void
9extract_path_info(const fastuidraw::Path &path,
10 std::vector<fastuidraw::vec2> *out_pts,
11 std::vector<fastuidraw::vec2> *out_crl_pts,
12 std::vector<fastuidraw::vec2> *out_arc_center_pts,
13 std::string *path_text);
14
15#endif
16