-
-
Notifications
You must be signed in to change notification settings - Fork 338
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(Rect): add
offset
method (#533)
The offset method creates a new Rect that is moved by the amount specified in the x and y direction. These values can be positive or negative. This is useful for manual layout tasks. ```rust let rect = area.offset(Offset { x: 10, y -10 }); ```
- Loading branch information
1 parent
fe632d7
commit 1229b96
Showing
2 changed files
with
69 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/// Amounts by which to move a [`Rect`](super::Rect). | ||
/// | ||
/// Positive numbers move to the right/bottom and negative to the left/top. | ||
/// | ||
/// See [`Rect::offset`](super::Rect::offset) | ||
#[derive(Debug, Default, Clone, Copy)] | ||
pub struct Offset { | ||
/// How much to move on the X axis | ||
pub x: i32, | ||
/// How much to move on the Y axis | ||
pub y: i32, | ||
} |