mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 14:37:29 -06:00
Document Trimesh not reading OFF files
Contributes to issue CURA-6739.
This commit is contained in:
parent
e761b2c2a7
commit
41c5b87eae
2 changed files with 13 additions and 0 deletions
|
@ -49,6 +49,14 @@ class TrimeshReader(MeshReader):
|
|||
suffixes = ["gltf"]
|
||||
)
|
||||
)
|
||||
# Trimesh seems to have a bug when reading .off files.
|
||||
#MimeTypeDatabase.addMimeType(
|
||||
# MimeType(
|
||||
# name = "application/x-off",
|
||||
# comment = "Geomview Object File Format",
|
||||
# suffixes = ["off"]
|
||||
# )
|
||||
#)
|
||||
MimeTypeDatabase.addMimeType(
|
||||
MimeType(
|
||||
name = "application/x-ply", # Wikipedia lists the MIME type as "text/plain" but that won't do as it's not unique to PLY files.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue