Begin commands for a particular figure. Parameters ---------- fig : matplotlib.Figure The Figure which will contain the ensuing axes and elements props : dictionary The dictionary of figure properties
(self, fig, props)
| 72 | # Following are the functions which should be overloaded in subclasses |
| 73 | |
| 74 | def open_figure(self, fig, props): |
| 75 | """ |
| 76 | Begin commands for a particular figure. |
| 77 | |
| 78 | Parameters |
| 79 | ---------- |
| 80 | fig : matplotlib.Figure |
| 81 | The Figure which will contain the ensuing axes and elements |
| 82 | props : dictionary |
| 83 | The dictionary of figure properties |
| 84 | """ |
| 85 | pass |
| 86 | |
| 87 | def close_figure(self, fig): |
| 88 | """ |