File indexing completed on 2024-12-22 04:04:09

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 #ifndef BBOX_H
0006 #define BBOX_H
0007 
0008 #include "potracelib.h"
0009 
0010 /* an interval [min, max] */
0011 struct interval_s {
0012   double min, max;
0013 };
0014 typedef struct interval_s interval_t;
0015 
0016 void path_limits(potrace_path_t *path, potrace_dpoint_t dir, interval_t *i);
0017 
0018 #endif /* BBOX_H */