你已经派生过 gprMax
镜像自地址
https://gitee.com/sunhf/gprMax.git
已同步 2025-08-07 04:56:51 +08:00
bugfix, to_save_str = ' '.join(to_save) fails if to_save is Noen (which is the default!)
这个提交包含在:
@@ -621,7 +621,11 @@ def rx(x, y, z, identifier=None, to_save=None, polarisation=None, dxdy=None, rot
|
|||||||
x, y, xf, yf = rotate90_edge(x, y, xf, yf, polarisation, rotate90origin)
|
x, y, xf, yf = rotate90_edge(x, y, xf, yf, polarisation, rotate90origin)
|
||||||
|
|
||||||
c = Coordinate(x, y, z)
|
c = Coordinate(x, y, z)
|
||||||
command('rx', str(c), identifier, ' '.join(to_save))
|
to_save_str = ''
|
||||||
|
if to_save is not None:
|
||||||
|
to_save_str = ' '.join(to_save)
|
||||||
|
|
||||||
|
command('rx', str(c), identifier, to_save_str)
|
||||||
|
|
||||||
return c
|
return c
|
||||||
|
|
||||||
|
在新工单中引用
屏蔽一个用户