diff options
Diffstat (limited to 'third_party/rust/image/src/math/mod.rs')
-rw-r--r-- | third_party/rust/image/src/math/mod.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/third_party/rust/image/src/math/mod.rs b/third_party/rust/image/src/math/mod.rs new file mode 100644 index 0000000000..4b862b5a48 --- /dev/null +++ b/third_party/rust/image/src/math/mod.rs @@ -0,0 +1,6 @@ +//! Mathematical helper functions and types. +pub mod nq; +pub mod utils; + +mod rect; +pub use self::rect::Rect; |