1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
use crate::Rect;
use crate::Vec2;
use glib::translate::*;
use std::fmt;
impl Rect {
#[doc(alias = "graphene_rect_get_vertices")]
#[doc(alias = "get_vertices")]
pub fn vertices(&self) -> &[Vec2; 4] {
unsafe {
let mut out: [ffi::graphene_vec2_t; 4] = std::mem::zeroed();
ffi::graphene_rect_get_vertices(self.to_glib_none().0, &mut out as *mut _);
&*(&out as *const [ffi::graphene_vec2_t; 4] as *const [Vec2; 4])
}
}
#[doc(alias = "graphene_rect_init")]
pub fn new(x: f32, y: f32, width: f32, height: f32) -> Self {
assert_initialized_main_thread!();
unsafe {
let mut rect = Self::uninitialized();
ffi::graphene_rect_init(rect.to_glib_none_mut().0, x, y, width, height);
rect
}
}
}
impl fmt::Debug for Rect {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Rect")
.field("x", &self.x())
.field("y", &self.y())
.field("width", &self.width())
.field("height", &self.height())
.finish()
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::Point;
#[test]
fn contains_point() {
let rect = Rect::new(100., 100., 100., 100.);
let right = Point::new(250., 150.);
let below = Point::new(150., 50.);
let left = Point::new(50., 150.);
let above = Point::new(150., 250.);
assert!(!rect.contains_point(&right));
assert!(!rect.contains_point(&below));
assert!(!rect.contains_point(&left));
assert!(!rect.contains_point(&above));
}
}