How would I achieve saving the scale/dimensions of the model to the .stl file?
For e.g. if I change the scale of the model and use download_model, how can you apply the new dimensions to the file before downloading?
I was expecting the get_model_mesh function's scale property to update once I call the set_scale method on the model.
What worked was calling set_scale then get_stl_bin that has the updated scale.
How would I achieve saving the scale/dimensions of the model to the .stl file? For e.g. if I change the scale of the model and use
download_model
, how can you apply the new dimensions to the file before downloading?