aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/main.rs b/src/main.rs
index c7cf4f0..a598ebe 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -17,8 +17,6 @@ fn main() {
let mut editor = Editor::new();
- let test_svg = svg::read_svg_file("drawing.svg").expect("Could not load svg file");
-
let mut transform = Transform::new();
let mut last_mouse_pos = rl.get_mouse_position();
while !rl.window_should_close() {
@@ -51,12 +49,6 @@ fn main() {
d.clear_background(Color::BLACK);
grid::draw_grid(&mut d, screen_width, screen_height, &transform);
- d.draw_svg(
- &test_svg,
- transform.pixels_per_m(),
- transform.translation_px(),
- );
-
editor.draw_tools(&mut d, &transform);
}
}