~ubuntu-branches/ubuntu/utopic/python-chaco/utopic

« back to all changes in this revision

Viewing changes to examples/tutorials/scipy2008/image.py

  • Committer: Bazaar Package Importer
  • Author(s): Varun Hiremath
  • Date: 2011-04-06 19:03:54 UTC
  • mfrom: (7.2.2 sid)
  • Revision ID: james.westby@ubuntu.com-20110406190354-rwd55l2ezjecfo41
Tags: 3.4.0-2
d/rules: fix pyshared directory path (Closes: #621116)

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
        # Create a Plot and associate it with the PlotData
28
28
        plot = Plot(plotdata)
29
29
        # Create a line plot in the Plot
30
 
        plot.img_plot("imagedata", xbounds=x, ybounds=y, colormap=jet)
 
30
        plot.img_plot("imagedata", colormap=jet)
31
31
        self.plot = plot
32
32
 
33
33
#===============================================================================