xzos / PyZDDE

Zemax/ OpticStudio Extension using Python
MIT License
159 stars 67 forks source link

bug in zGetTraceDirect #39

Closed ng110 closed 9 years ago

ng110 commented 9 years ago

missing comma line 3231: args3 = "{x:1.20f},{y:1.20f},{z:1.20f}".format(x=x,y=y,z=z) should be: args3 = "{x:1.20f},{y:1.20f},{z:1.20f},".format(x=x,y=y,z=z)

(simular bugs in zGetPolTraceDirect and zGetPolTrace)

indranilsinharoy commented 9 years ago

Hi @ng110, thanks for reporting this. I will fix it ASAP.

indranilsinharoy commented 9 years ago

Fixed.