Skip to content

Commit a8f34f3

Browse files
committed
small fix in python example
1 parent db667ba commit a8f34f3

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

python_examples/example_shell3D.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
#!/usr/bin/python
22

33
""""
4-
@file BSpline curve example
4+
@file example_shell3D.py
55
6-
@brief Play with a B-spline curve in Python
6+
@brief Replicates example_shell3D from the gsKLShell module
77
88
This file is part of the G+Smo library.
99
1010
This Source Code Form is subject to the terms of the Mozilla Public
1111
License, v. 2.0. If a copy of the MPL was not distributed with this
1212
file, You can obtain one at http://mozilla.org/MPL/2.0/.
1313
14-
Author(s): S. Imperatore
14+
Author(s): H.M. Verhelst
1515
"""
1616

1717
import os, sys
@@ -143,12 +143,10 @@ def Jacobian(resvec):
143143
YY = YY.reshape(N*N)
144144

145145
u = np.stack([XX,YY])
146-
print(u)
147146

148147
sol = assembler.constructSolution(solution)
149148

150149
solution = sol.patch(0).eval(u)
151-
print(solution)
152150

153151
fig = plt.figure()
154152
ax = fig.add_subplot() # projection='3d'

0 commit comments

Comments
 (0)