removed unneeded print

This commit is contained in:
Maxime Vorwerk
2023-08-29 15:30:18 +02:00
parent d836aa5c1a
commit e7872ea05a

View File

@@ -19,11 +19,8 @@ def plotShapesPY(vs):
plotShapePY(vs[0]) plotShapePY(vs[0])
else: else:
fig = plt.figure() fig = plt.figure()
print(n)
n_rows = int(np.ceil(0.6*n)) n_rows = int(np.ceil(0.6*n))
n_cols = int(np.ceil(n/n_rows)) n_cols = int(np.ceil(n/n_rows))
print(n_rows)
print(n_cols)
for i in range(len(vs)): for i in range(len(vs)):
v = vs[i] v = vs[i]
ax = fig.add_subplot(n_cols, n_rows, i+1, projection='3d') ax = fig.add_subplot(n_cols, n_rows, i+1, projection='3d')