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

« back to all changes in this revision

Viewing changes to chaco/image_data.py

  • Committer: Package Import Robot
  • Author(s): Andrew Starr-Bochicchio
  • Date: 2014-06-01 17:04:08 UTC
  • mfrom: (7.2.5 sid)
  • Revision ID: package-import@ubuntu.com-20140601170408-m86xvdjd83a4qon0
Tags: 4.4.1-1ubuntu1
* Merge from Debian unstable. Remaining Ubuntu changes:
 - Let the binary-predeb target work on the usr/lib/python* directory
   as we don't have usr/share/pyshared anymore.

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
    data = Property(ImageTrait)
51
51
 
52
52
    # Is **raw_value**, the actual underlying image data
53
 
    # array, transposed from **value**? (I.e., does the first axis correspond to
 
53
    # array, transposed from **data**? (I.e., does the first axis correspond to
54
54
    # the x-direction and the second axis correspond to the y-direction?)
55
55
    #
56
56
    # Rather than transposing or swapping axes on the data and destroying
57
 
    # continuity, this class exposes the data as both **value** and **raw_value**.
 
57
    # continuity, this class exposes the data as both **data** and **raw_value**.
58
58
    transposed = Bool(False)
59
59
 
60
60
    # A read-only attribute that exposes the underlying array.