Closed mofibo closed 4 months ago
Hey, is it possible it's the difference between binary and ASCII STL exports?
In [9]: m = trimesh.creation.icosphere()
In [10]: len(m.export(file_type='stl_ascii'))
Out[10]: 371039
In [11]: len(m.export(file_type='stl'))
Out[11]: 64084
Hello,
I noticed that when I export a mesh using:
the file size is smaller than when I use:
For this example, in local, it is 15MB and remote 42MB
Can anyone explain why the sizes are different?
Thanks!