diff --git a/examples/event_handling/README b/examples/event_handling/README deleted file mode 100644 index 0531adc749f7..000000000000 --- a/examples/event_handling/README +++ /dev/null @@ -1,11 +0,0 @@ -matplotlib event handling -========================= - -matplotlib supports event handling with a GUI neutral event model. So -you can connect to matplotlib events w/o knowledge of what user -interface matplotlib will ultimately be plugged in to. This has two -advantages: the code you write will be more portable, and matplotlib -events are aware of things like data coordinate space and which axes -the event occurs in so you don't have to mess with low level -transformation details to go from canvas space to data space. Object -picking examples are also included. diff --git a/examples/event_handling/README.txt b/examples/event_handling/README.txt index 59c1b7b4406a..0f99de02dace 100644 --- a/examples/event_handling/README.txt +++ b/examples/event_handling/README.txt @@ -2,3 +2,12 @@ Event Handling ============== + +Matplotlib supports event handling with a GUI neutral event model, so +you can connect to Matplotlib events without knowledge of what user +interface Matplotlib will ultimately be plugged in to. This has two +advantages: the code you write will be more portable, and Matplotlib +events are aware of things like data coordinate space and which axes +the event occurs in so you don't have to mess with low level +transformation details to go from canvas space to data space. Object +picking examples are also included.