diff options
author | 2020-01-01 15:44:32 -0700 | |
---|---|---|
committer | 2020-01-01 22:45:29 -0700 | |
commit | 0d620b7701f427ed0091f3640ab9ca0e116eb412 (patch) | |
tree | 6bd8a4cdd03643e4eca4dfe777a5e819643b1cec /native/src/lib.rs | |
parent | 26de688e68347e1f6e388d01014eac89cea71afa (diff) | |
download | iced-0d620b7701f427ed0091f3640ab9ca0e116eb412.tar.gz iced-0d620b7701f427ed0091f3640ab9ca0e116eb412.tar.bz2 iced-0d620b7701f427ed0091f3640ab9ca0e116eb412.zip |
Implement Geometry2D primitive
Diffstat (limited to 'native/src/lib.rs')
-rw-r--r-- | native/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/native/src/lib.rs b/native/src/lib.rs index 8dcacb2b..6f6af159 100644 --- a/native/src/lib.rs +++ b/native/src/lib.rs @@ -55,7 +55,7 @@ mod user_interface; pub use iced_core::{ Align, Background, Color, Command, Font, HorizontalAlignment, Length, - Point, Rectangle, Vector, VerticalAlignment, + Point, Rectangle, Vector, VerticalAlignment, Geometry2D, Vertex2D, }; pub use clipboard::Clipboard; |