Adds new graph entity
(&mut self, graph: &dyn GraphMaker)
| 190 | |
| 191 | /// Adds new graph entity |
| 192 | pub fn add(&mut self, graph: &dyn GraphMaker) -> &mut Self { |
| 193 | self.buffer.push_str(graph.get_buffer()); |
| 194 | self |
| 195 | } |
| 196 | |
| 197 | /// Enables tight bounding box calculation when saving (default: `true`) |
| 198 | /// |