mirror of
https://git.mirrors.martin98.com/https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-26 16:02:02 +08:00
Merge remote-tracking branch 'remotes/origin/master' into vb_undo_redo2
This commit is contained in:
commit
d669a00980
@ -386,7 +386,7 @@ static inline std::vector<Vec2f> poisson_disk_from_samples(const std::vector<Vec
|
|||||||
} else {
|
} else {
|
||||||
// This is a new cell.
|
// This is a new cell.
|
||||||
PoissonDiskGridEntry data;
|
PoissonDiskGridEntry data;
|
||||||
data.first_sample_idx = i;
|
data.first_sample_idx = int(i);
|
||||||
data.sample_cnt = 1;
|
data.sample_cnt = 1;
|
||||||
auto result = cells.insert({sample.cell_id, data});
|
auto result = cells.insert({sample.cell_id, data});
|
||||||
last_cell_id = sample.cell_id;
|
last_cell_id = sample.cell_id;
|
||||||
|
@ -12,10 +12,18 @@
|
|||||||
#include "SLABoostAdapter.hpp"
|
#include "SLABoostAdapter.hpp"
|
||||||
#include "boost/geometry/index/rtree.hpp"
|
#include "boost/geometry/index/rtree.hpp"
|
||||||
|
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
#pragma warning(push)
|
||||||
|
#pragma warning(disable: 4244)
|
||||||
|
#pragma warning(disable: 4267)
|
||||||
|
#endif
|
||||||
#include <igl/ray_mesh_intersect.h>
|
#include <igl/ray_mesh_intersect.h>
|
||||||
#include <igl/point_mesh_squared_distance.h>
|
#include <igl/point_mesh_squared_distance.h>
|
||||||
#include <igl/remove_duplicate_vertices.h>
|
#include <igl/remove_duplicate_vertices.h>
|
||||||
#include <igl/signed_distance.h>
|
#include <igl/signed_distance.h>
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
#pragma warning(pop)
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <tbb/parallel_for.h>
|
#include <tbb/parallel_for.h>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user