diff options
| author | Laurenz <laurmaedje@gmail.com> | 2022-11-29 13:37:25 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2022-11-29 14:18:13 +0100 |
| commit | 0efe669278a5e1c3f2985eba2f3360e91159c54a (patch) | |
| tree | 502712857c48f0decb5e698257c0a96d358a436e /library/src/visualize/mod.rs | |
| parent | 836692e73cff0356e409a9ba5b4887b86809d4ca (diff) | |
Reorganize library and tests
Diffstat (limited to 'library/src/visualize/mod.rs')
| -rw-r--r-- | library/src/visualize/mod.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/library/src/visualize/mod.rs b/library/src/visualize/mod.rs new file mode 100644 index 00000000..1c87eeb3 --- /dev/null +++ b/library/src/visualize/mod.rs @@ -0,0 +1,9 @@ +//! Drawing and visualization. + +mod image; +mod line; +mod shape; + +pub use self::image::*; +pub use self::line::*; +pub use self::shape::*; |
