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
If one tries to load an .obj file using the library, the following error occurs:
TypeError: Could not operate 1 with block values unsupported operand type(s) for -: 'str' and 'int'
This happens because the code does not correctly handle missing texture vertex coordinates in the .obj file. If there are no texture vertex coordinates, None is written to the pd.DataFrame and you cannot subtract 1 from NoneType while correcting the indices.
The text was updated successfully, but these errors were encountered:
Description
If one tries to load an .obj file using the library, the following error occurs:
TypeError: Could not operate 1 with block values unsupported operand type(s) for -: 'str' and 'int'
This happens because the code does not correctly handle missing texture vertex coordinates in the .obj file. If there are no texture vertex coordinates, None is written to the pd.DataFrame and you cannot subtract 1 from NoneType while correcting the indices.
The text was updated successfully, but these errors were encountered: