You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
349 B
C++

#ifndef CLIPPER_KEYHOLING_H
#define CLIPPER_KEYHOLING_H
#include "clipper2/clipper.h"
using namespace Clipper2Lib;
Point64 toPoint64(double x, double y);
PathD fromPolygon64(const Path64& clipperPoly);
bool KeyHole(const Clipper2Lib::PolyTree64& polytree, Clipper2Lib::Paths64& solution);
Path64 ConnectPolygons(const Paths64& polygons);
#endif