Fix coord out-of-range exception caused by m_origin memory not initialized to 0

This commit is contained in:
Noisyfox
2026-06-22 20:50:00 +08:00
parent 8522cc5f67
commit 99dea01cc3

View File

@@ -1175,7 +1175,7 @@ private:
std::vector<unsigned int> m_slice_used_filaments_first_layer;
//BBS: plate's origin
Vec3d m_origin;
Vec3d m_origin {0, 0, 0};
//BBS: modified_count
int m_modified_count {0};
//BBS