File indexing completed on 2024-12-22 04:04:10
0001 /* Copyright (C) 2001-2019 Peter Selinger. 0002 This file is part of Potrace. It is free software and it is covered 0003 by the GNU General Public License. See the file COPYING for details. */ 0004 0005 0006 #ifndef DECOMPOSE_H 0007 #define DECOMPOSE_H 0008 0009 #include "potracelib.h" 0010 #include "progress.h" 0011 #include "curve.h" 0012 0013 int bm_to_pathlist(const potrace_bitmap_t *bm, path_t **plistp, const potrace_param_t *param, progress_t *progress); 0014 0015 #endif /* DECOMPOSE_H */ 0016