You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's slightly more complicated than that unfortunately. STL files are composed of triangles so you need to make sure you compare each point to each other point.
You are currently comparing the first point of each triangle while ignoring the other 2 points. This will be close to the actual number, but it will usually differ slightly.
To get the correct calculation you need to use your_mesh.points.max() - your_mesh.points.min()
The STL format does not specify a unit so the sizes can be measured in millimeters, meters, inches or something completely different depending on your source. Having that said, most of the 3D print STL files you can find online are in millimeters but there is no guarantee for that.
Uh oh!
There was an error while loading. Please reload this page.
#I tried this code:
#Is it correct?
#What is the length measured in your libraries? Is it measured in millimeters?
The text was updated successfully, but these errors were encountered: