update src\libslic3r

This commit is contained in:
wjyLearn
2025-12-20 19:15:57 +08:00
parent 69be99b00a
commit 50572b196e
75 changed files with 5255 additions and 969 deletions

View File

@@ -334,6 +334,7 @@ inline Vec3f its_face_normal(const indexed_triangle_set &its, const stl_triangle
inline Vec3f its_face_normal(const indexed_triangle_set &its, const int face_idx)
{ return its_face_normal(its, its.indices[face_idx]); }
indexed_triangle_set its_make_xoy_center_rect(float width,float height,float depth =0.f);
indexed_triangle_set its_make_cube(double x, double y, double z);
indexed_triangle_set its_make_prism(float width, float length, float height);
indexed_triangle_set its_make_cylinder(double r, double h, double fa=(2*PI/360));