1
0
mirror of https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git synced 2026-05-12 22:54:54 +00:00
Files
OrcaSlicer-bambulab/deps_src/clipper2/Clipper2Lib/include/clipper2/clipper2_z.hpp
2026-05-11 19:29:55 +01:00

18 lines
364 B
C++

// Hackish wrapper around the ClipperLib library to compile the Clipper2 library with the Z support.
#ifndef clipper2_z_hpp
#ifdef CLIPPER_H
#error "You should include clipper2_z.hpp before clipper.h"
#endif
#define clipper2_z_hpp
// Enable the Z coordinate support.
#define USINGZ
#include "clipper.h"
#undef CLIPPER_H
#undef USINGZ
#endif // clipper2_z_hpp