summaryrefslogtreecommitdiffstats
path: root/svgbob/src/fragments.rs
diff options
context:
space:
mode:
Diffstat (limited to 'svgbob/src/fragments.rs')
-rw-r--r--svgbob/src/fragments.rs9
1 files changed, 4 insertions, 5 deletions
diff --git a/svgbob/src/fragments.rs b/svgbob/src/fragments.rs
index 3661a54..8aa7e48 100644
--- a/svgbob/src/fragments.rs
+++ b/svgbob/src/fragments.rs
@@ -1,10 +1,10 @@
-use self::Fragment::{Arc, ArrowLine, ClearArrowLine,
- Line, DashedLine, CircleStartLine, SquareStartLine,
- CircleOpenLine, BigCircleOpenLine, OpenCircle, StartArrowLine};
+use self::Fragment::{
+ Arc, ArrowLine, BigCircleOpenLine, CircleOpenLine, CircleStartLine, ClearArrowLine, DashedLine,
+ Line, OpenCircle, SquareStartLine, StartArrowLine,
+};
use point_block::PointBlock;
-
/// These are non-final drawing elements
/// Lines most likely fall on the collinear line
/// arc most likely be changed
@@ -58,4 +58,3 @@ pub fn arc(s: &PointBlock, e: &PointBlock, r: i32) -> Fragment {
pub fn open_circle(c: &PointBlock, r: i32) -> Fragment {
OpenCircle(c.clone(), r)
}
-