Fix bracketing

这个提交包含在:
Craig Warren
2022-11-08 14:18:08 +00:00
父节点 28aff0e41f
当前提交 0818c50cc3
共有 2 个文件被更改,包括 2 次插入2 次删除

查看文件

@@ -766,7 +766,7 @@ cpdef void build_cylinder(
# z-aligned
elif (round_value(x1 / dx) == round_value(x2 / dx) and
round_value(y1 / dy) == round_value(y2 / dy):)
round_value(y1 / dy) == round_value(y2 / dy)):
z_align = 1
# Calculate a bounding box for the cylinder

查看文件

@@ -60,7 +60,7 @@ class Waveform:
self.chi = 1 / self.freq
self.zeta = 2 * np.pi**2 * self.freq**2
elif (self.type == 'gaussiandotdot' or
self.type == 'gaussiandotdotnorm' or self.type == 'ricker':)
self.type == 'gaussiandotdotnorm' or self.type == 'ricker'):
self.chi = np.sqrt(2) / self.freq
self.zeta = np.pi**2 * self.freq**2