xzos / PyZDDE

Zemax/ OpticStudio Extension using Python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

bug in zGetTraceDirect

ng110 opened this issue · comments

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)

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