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

« back to all changes in this revision

Viewing changes to enthought/chaco/scatter_markers.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:
1
1
# This module used to be the home of the various Marker classes, but they
2
2
# have since been moved to the enable.markers module.
3
3
 
 
4
from enthought.enable.compiled_path import CompiledPath
4
5
from enthought.enable.markers import AbstractMarker, SquareMarker, \
5
6
    CircleMarker, TriangleMarker, Inverted_TriangleMarker, PlusMarker, \
6
7
    CrossMarker, DiamondMarker, DotMarker, PixelMarker, CustomMarker, \
12
13
            INVERTED_TRIANGLE_MARKER, PLUS_MARKER, DOT_MARKER, \
13
14
            PIXEL_MARKER, NO_MARKER
14
15
 
15
 
from enthought.kiva import CompiledPath
16
16
 
17
17