Fixed bug with plate check dims

这个提交包含在:
Craig Warren
2023-06-08 14:53:20 +01:00
父节点 6cdf0137f3
当前提交 6e1dd685e1

查看文件

@@ -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