Skip to content

Commit d8feeab

Browse files
committed
minor demo update
1 parent 638c0b5 commit d8feeab

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

demo.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -362,11 +362,13 @@ def check_expected_error(what, f):
362362
wait=1,
363363
multiplot='title "basic multiplot" layout 2,2', )
364364

365-
# fancy contours stacked on top of one another
365+
# fancy contours stacked on top of one another. Using multiplot to render
366+
# several plots directly onto one another
366367
xx,yy = np.meshgrid(np.linspace(-5,5,100),
367368
np.linspace(-5,5,100))
368369
zz = np.sin(xx) + yy*yy/30.
369-
for hardcopy in (None, "stacked-contours.png"):
370+
371+
for hardcopy in (None, "stacked-contours.png", "stacked-contours.gp",):
370372
gp.plot3d( (zz,
371373
dict(tuplesize=3,
372374
_with = np.array(('lines nosurface',

0 commit comments

Comments
 (0)