Defines the trait used by Plot to add graph entities
| 11 | |
| 12 | /// Defines the trait used by Plot to add graph entities |
| 13 | pub trait GraphMaker { |
| 14 | /// Returns the text buffer with Python3 commands |
| 15 | fn get_buffer<'a>(&'a self) -> &'a String; |
| 16 | |
| 17 | /// Clear the text buffer with Python commands |
| 18 | fn clear_buffer(&mut self); |
| 19 | } |
| 20 | |
| 21 | /// Central plot driver — collects graph entities, generates a Python script, and executes it |
| 22 | /// |
nothing calls this directly
no outgoing calls
no test coverage detected