In the draw_path_at_points method, it checks for an array's nd attribute instead of ndim:
|
if apoints.nd != 2 or apoints.dimensions[1] != 2: |
Simple fix; but the fix should probably include a test, since it appears that the code isn't being exercised and is important for Chaco scatterplots.
dimensions should probably be shape, as well.
In the
draw_path_at_pointsmethod, it checks for an array'sndattribute instead ofndim:enable/kiva/quartz/ABCGI.pyx
Line 500 in 0ae01f0
Simple fix; but the fix should probably include a test, since it appears that the code isn't being exercised and is important for Chaco scatterplots.
dimensionsshould probably beshape, as well.