yfournier created page: create your first axes authored by Yori Fournier's avatar Yori Fournier
# Summary
1. [Concept](#concept)
2. [The class AxMyFirstAxes](#the-class-axmyfirstaxes)
3. [Linking the class to the module](#linking-the-new-class-to-the-module)
4. [Using the axes](#using-the-axes)
# Concept # Concept
**myplotlib** is an interface between you and the great functionality of matplotlib. **myplotlib** is an interface between you and the great functionality of matplotlib.
...@@ -34,7 +41,7 @@ ensuring that you can enjoy the full power of matplotlib. ...@@ -34,7 +41,7 @@ ensuring that you can enjoy the full power of matplotlib.
Now we will see how to overwrite the **base class** `MyAxes` with a new class that we will call `AxMyFirstAxes`. Now we will see how to overwrite the **base class** `MyAxes` with a new class that we will call `AxMyFirstAxes`.
To overwrite a class you just need to overwrite these two empty functions and actually do something. To overwrite a class you just need to overwrite these two empty functions and actually do something.
# The axes class # The class AxMyFirstAxes
Create `mymodule/myAxes/<name of my class>.py` Create `mymodule/myAxes/<name of my class>.py`
... ...
......