mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-12 17:27:52 -06:00
3mf export - Do not export unneeded space
This commit is contained in:
parent
d68489c7d7
commit
b178a1b04f
1 changed files with 13 additions and 11 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue