mirror of
https://git.mirrors.martin98.com/https://github.com/SoftFever/OrcaSlicer.git
synced 2025-08-01 19:50:39 +08:00
3mf export - Do not export unneeded space
This commit is contained in:
parent
d68489c7d7
commit
b178a1b04f
@ -2550,6 +2550,7 @@ namespace Slic3r {
|
|||||||
|
|
||||||
std::string custom_supports_data_string = volume->supported_facets.get_triangle_as_string(i);
|
std::string custom_supports_data_string = volume->supported_facets.get_triangle_as_string(i);
|
||||||
if (! custom_supports_data_string.empty()) {
|
if (! custom_supports_data_string.empty()) {
|
||||||
|
output_buffer += " ";
|
||||||
output_buffer += CUSTOM_SUPPORTS_ATTR;
|
output_buffer += CUSTOM_SUPPORTS_ATTR;
|
||||||
output_buffer += "=\"";
|
output_buffer += "=\"";
|
||||||
output_buffer += custom_supports_data_string;
|
output_buffer += custom_supports_data_string;
|
||||||
@ -2558,6 +2559,7 @@ namespace Slic3r {
|
|||||||
|
|
||||||
std::string custom_seam_data_string = volume->seam_facets.get_triangle_as_string(i);
|
std::string custom_seam_data_string = volume->seam_facets.get_triangle_as_string(i);
|
||||||
if (! custom_seam_data_string.empty()) {
|
if (! custom_seam_data_string.empty()) {
|
||||||
|
output_buffer += " ";
|
||||||
output_buffer += CUSTOM_SEAM_ATTR;
|
output_buffer += CUSTOM_SEAM_ATTR;
|
||||||
output_buffer += "=\"";
|
output_buffer += "=\"";
|
||||||
output_buffer += custom_seam_data_string;
|
output_buffer += custom_seam_data_string;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user