// SVG drawing constants pub const SVG_OPEN_TAG: &str = r#""#; pub const SVG_CLOSE_TAG: &str = ""; // Sylistic constants pub const BLACK: &str = "black"; /// Helper function to create an SVG text entitty. pub fn draw_text(text: String, x_pos: f64, y_pos: f64, fill: &str) -> String { format!(r#"{text}"#) }