-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Binary preview is solid black in macOS (but ASCII is ok) #163
Comments
The STL file only carry information about triangles. No materials or shading. I can't think of anything the exporter can do. This seem to be to be a Quick View issue. (btw, attaching sample STL files would help when reporting issues.) |
Do this happen to binary STL files from SU only? Did you compare against binary files from other sources? (If so can you provide example files of what work and what doesn't?) |
I wonder if the preview app is looking for a color in the "unused" bytes of the binary stl format? |
See issue #25 about color in stl files. |
The unused bytes are just reserved. the specs doesn't specify any color data. In any case, that I'm downloading the STL now and will inspect it. This was one from SU, right? Have you seen an binary STL that didn't display as black? Btw, what version of OSX are you using? |
I see now - the ZIP had examples from SU and Fusion. And the Fusion binary files doesn't display as black? |
The STLs exported from Fusion 360 display with the same style/color as the ASCII one exported from SketchUp (not solid black). I'm using macOS 10.12.2. |
The fusion binaries include a COLOR string in the header, where the SketchUp binaries do not. Maybe that's all it is.
|
@jsejcksn Here is a SketchUp binary stl with a COLOR string in the header - can you try it in Quick View? |
One more please? |
@jsejcksn I didn't change the orientation. |
Given that STL doesn't have any official color data I'm closing this as Won't Fix. The issue lies in the OS-X preview functionality. |
@jimfoltz Did you see this? https://en.wikipedia.org/wiki/STL_(file_format)#Color_in_binary_STL Perhaps it has something to do with it. |
Hm... Using the comment section for unofficial data is one thing. But using the attribute byte count is troublesome. Those two bytes indicate the size of additional data. But they should not contain data themselves.
By the specs the STL parsers should be reading the attribute byte count and skip past it unless they know what it represent. |
Ok. I'm definitely in favor of upholding standards. |
Is the STL preview a built-in, or a plugin for Quick Look? |
Built-in |
Finding reports of various issues with the STL preview in OS X: http://forums.autodesk.com/t5/design-validate-document/360-stl-export-and-mac-os-quick-look-is-blank/td-p/6264439
|
https://discussions.apple.com/thread/5593219?tstart=0 |
It would be nice to provide better support for the Mac binary preview. I unfortunately don't have one so I can't be of much help unless someone can come up with what exact format the preview app is looking for. |
If we got hold of an STL file in binary format that displayed correctly we could look at possible amendments to the exporter. |
@driven says[1] the "cube.stl" from here[2] looks normal in the Mac preview. It is a binary stl with nothing but spaces in the header. |
Found a few others that have more header content, in the Meshlab Sample's download... john |
I wonder if Fusion 360 adds it's own plugin over-ride to the quick look viewer. |
AutoCad would never block other apps from reading it's content, would they... john |
@jimfoltz, I converted both failing binary files using assimp, the Fusion one then displayed correctly but the SU one was still black... so I then did a diff on the assimp versions and the SU > assimp has facet normal nan nan nan throughout, where the fusion > assimp always shows values facet normal 0 0 1 etc... I think it shows that Assimp can't read any of the face normals and the I suspect 'quicklook' has the same issue... EDIT: if I convert f-sketchup-ascii.stl to binary with Assimp, it shows correctly and has correct facet normals... john |
I don't remember why the normals are not being included in the binary export - maybe it just never came up. Here is a binary stl exported from SketchUp with correct normals. How does it look? |
Yay. Thank you for your invaluable insight and effort. |
OT: I just googled that editor - binary templates look like an incredibly useful feature. |
Yup - very nice editor. The templates is worth the cost by itself. There was a binary STL template available in their repository. I made some changes to it so that it could read the special header Fushion creates (extract version info and color info). |
Here are some screenshots from the file preview pane:
The text was updated successfully, but these errors were encountered: