Execute the layout on the figure given by *fig*.
(self, fig)
| 101 | return dict(self._params) |
| 102 | |
| 103 | def execute(self, fig): |
| 104 | """ |
| 105 | Execute the layout on the figure given by *fig*. |
| 106 | """ |
| 107 | # subclasses must implement this. |
| 108 | raise NotImplementedError |
| 109 | |
| 110 | |
| 111 | class PlaceHolderLayoutEngine(LayoutEngine): |
no outgoing calls
no test coverage detected