I saw that tinyobjloader lib has support for reading (but not interpreting) a seemingly undocumented OBJ extension from Pixar for storing crease chains.
The tinyobjloader repo. has an example OBJ.
It looks to me like there is a new token, t (probably for tag?), than then has the tag type (crease), and then three integers separated by /. The first one seems to be the number of vertices in the crease edge chain, the second the number of crease weights but the third (always 0 in the example) eludes me.
Can someone from Pixar clarify this or post a link describing this extension in sufficient detail for someone writing a parser? I e.g. assume there is probably a corner tag too etc.
Thanks heaps in advance!
I saw that
tinyobjloaderlib has support for reading (but not interpreting) a seemingly undocumented OBJ extension from Pixar for storing crease chains.The
tinyobjloaderrepo. has an example OBJ.It looks to me like there is a new token,
t(probably fortag?), than then has the tag type (crease), and then three integers separated by/. The first one seems to be the number of vertices in the crease edge chain, the second the number of crease weights but the third (always0in the example) eludes me.Can someone from Pixar clarify this or post a link describing this extension in sufficient detail for someone writing a parser? I e.g. assume there is probably a
cornertag too etc.Thanks heaps in advance!