mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-16 18:12:10 +00:00
Support larger printer sizes by using 64-bit.
SuperSlicer is referenced for some changes. Co-authored-by: Merill <merill@free.fr>
This commit is contained in:
@@ -209,10 +209,10 @@ GLModel::Geometry create_geometry(const TextLines &lines, float radius, bool is_
|
||||
|
||||
if (is_mirrored) {
|
||||
// change order of indices
|
||||
for (Vec3i t : its.indices)
|
||||
for (Vec3i32 t : its.indices)
|
||||
geometry.add_triangle(t[0], t[2], t[1]);
|
||||
} else {
|
||||
for (Vec3i t : its.indices)
|
||||
for (Vec3i32 t : its.indices)
|
||||
geometry.add_triangle(t[0], t[1], t[2]);
|
||||
}
|
||||
return geometry;
|
||||
|
||||
Reference in New Issue
Block a user