你已经派生过 gprMax
镜像自地址
https://gitee.com/sunhf/gprMax.git
已同步 2025-08-07 15:10:13 +08:00
Fixed bug with plate check dims
这个提交包含在:
@@ -88,7 +88,7 @@ class Plate(UserObjectGeometry):
|
||||
# Check for valid orientations
|
||||
if ((xs == xf and (ys == yf or zs == zf))
|
||||
or (ys == yf and (xs == xf or zs == zf))
|
||||
or (zs == zf and (ys != yf and xs != xf))):
|
||||
or (zs == zf and (xs == xf or ys == yf))):
|
||||
logger.exception(f'{self.__str__()} the plate is not specified correctly')
|
||||
raise ValueError
|
||||
|
||||
|
在新工单中引用
屏蔽一个用户