mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-10-04 15:56:30 +08:00
13 lines
162 B
C++
13 lines
162 B
C++
#ifndef slic3r_Geometry_hpp_
|
|
#define slic3r_Geometry_hpp_
|
|
|
|
#include "Polygon.hpp"
|
|
|
|
namespace Slic3r {
|
|
|
|
void convex_hull(Points points, Polygon &hull);
|
|
|
|
}
|
|
|
|
#endif
|