mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-07-11 08:04:25 +00:00
24 lines
375 B
C++
24 lines
375 B
C++
#ifndef SLABOILERPLATE_HPP
|
|
#define SLABOILERPLATE_HPP
|
|
|
|
#include <iostream>
|
|
#include <functional>
|
|
#include <numeric>
|
|
|
|
#include <libslic3r/ExPolygon.hpp>
|
|
#include <libslic3r/TriangleMesh.hpp>
|
|
|
|
#include "SLACommon.hpp"
|
|
#include "SLASpatIndex.hpp"
|
|
|
|
namespace Slic3r {
|
|
|
|
typedef Eigen::Matrix<int, 4, 1, Eigen::DontAlign> Vec4i;
|
|
|
|
namespace sla {
|
|
|
|
}
|
|
}
|
|
|
|
#endif // SLABOILERPLATE_HPP
|