diff options
| author | Laurenz <laurmaedje@gmail.com> | 2021-10-10 20:26:58 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2021-10-10 20:26:58 +0200 |
| commit | d4cc8c775d4c579aeac69ca2d212a604c67043b0 (patch) | |
| tree | 90c6bd20a3a0a4a1e471385a536c1333a4b05c99 /src/geom/mod.rs | |
| parent | f4ed775df073ceeff292810f19ca8d01b054eff1 (diff) | |
Move paint and colors into `geom`
Diffstat (limited to 'src/geom/mod.rs')
| -rw-r--r-- | src/geom/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/geom/mod.rs b/src/geom/mod.rs index 936f1868..ad92813e 100644 --- a/src/geom/mod.rs +++ b/src/geom/mod.rs @@ -10,6 +10,7 @@ mod fr; mod gen; mod length; mod linear; +mod paint; mod path; mod point; mod relative; @@ -25,6 +26,7 @@ pub use fr::*; pub use gen::*; pub use length::*; pub use linear::*; +pub use paint::*; pub use path::*; pub use point::*; pub use relative::*; |
