aboutsummaryrefslogtreecommitdiff
path: root/src/guide.rs
diff options
context:
space:
mode:
authorAkshay <[email protected]>2021-04-02 05:46:42 +0100
committerAkshay <[email protected]>2021-04-02 05:47:40 +0100
commitdc902a1cd718770bffcecfa4fffa8142db37a7e6 (patch)
treebab378dc9cb72868f1839f5e3e13449524c8525c /src/guide.rs
parent46236d9e2533cc57630548b9a701eb0089cd1293 (diff)
add rylander dithering, `define` macro, begin work on guides.
Diffstat (limited to 'src/guide.rs')
-rw-r--r--src/guide.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/guide.rs b/src/guide.rs
new file mode 100644
index 0000000..006566e
--- /dev/null
+++ b/src/guide.rs
@@ -0,0 +1,7 @@
1use crate::bitmap::Axis;
2
3#[derive(Debug)]
4pub struct Guide {
5 axis: Axis,
6 offset: u32,
7}