Add Active Tool Router (#58)

* Add Active Tool Router

* Remove commented out import
This commit is contained in:
ProTheory8
2021-04-01 21:10:28 +05:00
committed by Keavon Chambers
parent 6050038047
commit 4992bdee0e
18 changed files with 278 additions and 30 deletions

View File

@@ -1,4 +1,7 @@
pub mod operation;
pub use kurbo::{Circle, Point};
pub use operation::Operation;
#[derive(Debug, Clone, PartialEq)]
pub enum SvgElement {

View File

@@ -0,0 +1,3 @@
pub enum Operation {
AddCircle((f64, f64), f64),
}