diff --git a/resources/profiles/Artillery/bed-x1.png b/resources/profiles/Artillery/bed-x1.png index 16062e93c..bcf2e85eb 100644 Binary files a/resources/profiles/Artillery/bed-x1.png and b/resources/profiles/Artillery/bed-x1.png differ diff --git a/resources/profiles/RatRig/rr-vc-300.stl b/resources/profiles/RatRig/rr-vc-300.stl index 282f31a08..640e86890 100644 Binary files a/resources/profiles/RatRig/rr-vc-300.stl and b/resources/profiles/RatRig/rr-vc-300.stl differ diff --git a/resources/profiles/RatRig/rr-vc-400.stl b/resources/profiles/RatRig/rr-vc-400.stl index 8605f3ecc..422354ee2 100644 Binary files a/resources/profiles/RatRig/rr-vc-400.stl and b/resources/profiles/RatRig/rr-vc-400.stl differ diff --git a/resources/profiles/RatRig/rr-vc-500.stl b/resources/profiles/RatRig/rr-vc-500.stl index 75f187845..5427b1157 100644 Binary files a/resources/profiles/RatRig/rr-vc-500.stl and b/resources/profiles/RatRig/rr-vc-500.stl differ diff --git a/src/slic3r/GUI/GLModel.cpp b/src/slic3r/GUI/GLModel.cpp index 75998609b..e6bdae415 100644 --- a/src/slic3r/GUI/GLModel.cpp +++ b/src/slic3r/GUI/GLModel.cpp @@ -198,7 +198,6 @@ Vec2f GLModel::Geometry::extract_tex_coord_2(size_t id) const return { *(start + 0), *(start + 1) }; } -#if ENABLE_LEGACY_OPENGL_REMOVAL void GLModel::Geometry::set_vertex(size_t id, const Vec3f& position, const Vec3f& normal) { assert(format.vertex_layout == EVertexLayout::P3N3); @@ -240,7 +239,6 @@ void GLModel::Geometry::remove_vertex(size_t id) vertices.erase(it, it + stride); } } -#endif // ENABLE_LEGACY_OPENGL_REMOVAL size_t GLModel::Geometry::vertex_stride_floats(const Format& format) {