diff options
author | 2020-02-14 04:59:31 +0100 | |
---|---|---|
committer | 2020-02-14 04:59:31 +0100 | |
commit | 558abf648bdeb86d92e7092f4b023d5e55cc673c (patch) | |
tree | 62ceec73f34726af636265e5870f2cb18e46cf4d /core | |
parent | 76df374624e5d82dcb2670789a6c4ff228dda9e9 (diff) | |
download | iced-558abf648bdeb86d92e7092f4b023d5e55cc673c.tar.gz iced-558abf648bdeb86d92e7092f4b023d5e55cc673c.tar.bz2 iced-558abf648bdeb86d92e7092f4b023d5e55cc673c.zip |
Add transform stack to `canvas::Frame`
Diffstat (limited to 'core')
-rw-r--r-- | core/src/color.rs | 9 | ||||
-rw-r--r-- | core/src/point.rs | 7 |
2 files changed, 14 insertions, 2 deletions
diff --git a/core/src/color.rs b/core/src/color.rs index d6bdd365..db509b88 100644 --- a/core/src/color.rs +++ b/core/src/color.rs @@ -44,11 +44,18 @@ impl Color { /// /// [`Color`]: struct.Color.html pub fn from_rgb8(r: u8, g: u8, b: u8) -> Color { + Color::from_rgba8(r, g, b, 1.0) + } + + /// Creates a [`Color`] from its RGB8 components and an alpha value. + /// + /// [`Color`]: struct.Color.html + pub fn from_rgba8(r: u8, g: u8, b: u8, a: f32) -> Color { Color { r: f32::from(r) / 255.0, g: f32::from(g) / 255.0, b: f32::from(b) / 255.0, - a: 1.0, + a, } } diff --git a/core/src/point.rs b/core/src/point.rs index 47c8b142..b9a8149c 100644 --- a/core/src/point.rs +++ b/core/src/point.rs @@ -11,10 +11,15 @@ pub struct Point { } impl Point { + /// The origin (i.e. a [`Point`] with both X=0 and Y=0). + /// + /// [`Point`]: struct.Point.html + pub const ORIGIN: Point = Point::new(0.0, 0.0); + /// Creates a new [`Point`] with the given coordinates. /// /// [`Point`]: struct.Point.html - pub fn new(x: f32, y: f32) -> Self { + pub const fn new(x: f32, y: f32) -> Self { Self { x, y } } } |