Syntax fixes.

这个提交包含在:
Craig Warren
2019-10-11 11:59:07 +01:00
父节点 7b1fc6decf
当前提交 c2042af1ad
共有 2 个文件被更改,包括 3 次插入3 次删除

查看文件

@@ -124,4 +124,4 @@ class Cylinder(UserObjectGeometry):
dielectricsmoothing = 'on' if averaging else 'off'
log.info(f"Cylinder with face centres {x1:g}m, {y1:g}m, {z1:g}m and {x2:g}m, \
{y2:g}m, {z2:g}m, with radius {r:g}m, of material(s) {', '.join(materialsrequested)} \
created, dielectric smoothing is {dielectricsmoothing}."
created, dielectric smoothing is {dielectricsmoothing}.")

查看文件

@@ -162,6 +162,6 @@ class Triangle(UserObjectGeometry):
{thickness:g}m of material(s) {', '.join(materialsrequested)} \
created, dielectric smoothing is {dielectricsmoothing}.")
else:
log.info(f'Triangle with coordinates {x1:g}m {y1:g}m {z1:g}m, \
log.info(f"Triangle with coordinates {x1:g}m {y1:g}m {z1:g}m, \
{x2:g}m {y2:g}m {z2:g}m, {x3:g}m {y3:g}m {z3:g}m of \
material(s) {', '.join(materialsrequested)} created.')
material(s) {', '.join(materialsrequested)} created.")