From eecac7b5d163794645bcce8e450c74e3eb5e999f Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Sat, 31 Aug 2019 04:31:13 +0200 Subject: Remove `nalgebra` dependency - Implement our own `Point` and `Vector` types - Make `Rectangle` not generic --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index e2908f73..821c0dd0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -87,7 +87,7 @@ //! # fn draw( //! # &mut self, //! # _cursor_position: Point, -//! # _bounds: Rectangle, +//! # _bounds: Rectangle, //! # _state: &button::State, //! # _label: &str, //! # _class: button::Class, @@ -103,7 +103,7 @@ //! # //! # fn draw( //! # &mut self, -//! # _bounds: Rectangle, +//! # _bounds: Rectangle, //! # _content: &str, //! # _size: f32, //! # _color: Option<[f32; 4]>, -- cgit