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
use crate::Rect;
use crate::Vec2;
use glib::translate::*;
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 _);
[
from_glib_none(&out[0] as *const _),
from_glib_none(&out[1] as *const _),
from_glib_none(&out[2] as *const _),
from_glib_none(&out[3] as *const _),
]
}
}
#[doc(alias = "graphene_rect_init")]
pub fn new(x: f32, y: f32, width: f32, height: f32) -> Rect {
assert_initialized_main_thread!();
unsafe {
let alloc = ffi::graphene_rect_alloc();
ffi::graphene_rect_init(alloc, x, y, width, height);
from_glib_full(alloc)
}
}
#[doc(alias = "graphene_rect_init_from_rect")]
#[doc(alias = "new_from_rect")]
pub fn from_rect(src: &Rect) -> Rect {
assert_initialized_main_thread!();
unsafe {
let alloc = ffi::graphene_rect_alloc();
ffi::graphene_rect_init_from_rect(alloc, src.to_glib_none().0);
from_glib_full(alloc)
}
}
}