79301360

Date: 2024-12-22 17:07:52
Score: 2.5
Natty:
Report link

Re Rabbid76's answer:

Not enough rep to comment, but I tried this code and it works after the following correction:

elif tokens[0] == 'vt':
        vn_arr.append([float(c) for c in tokens[1:]])

should read

elif tokens[0] == 'vt':
        vt_arr.append([float(c) for c in tokens[1:]])

Thank you.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): to comment
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: CGChas