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
use crate::Point;
use crate::Vec2;
use glib::translate::*;
impl Point {
#[doc(alias = "graphene_point_init")]
pub fn new(x: f32, y: f32) -> Point {
assert_initialized_main_thread!();
unsafe {
let alloc = ffi::graphene_point_alloc();
ffi::graphene_point_init(alloc, x, y);
from_glib_full(alloc)
}
}
#[doc(alias = "graphene_point_init_from_point")]
#[doc(alias = "new_from_point")]
pub fn from_point(src: &Point) -> Point {
assert_initialized_main_thread!();
unsafe {
let alloc = ffi::graphene_point_alloc();
ffi::graphene_point_init_from_point(alloc, src.to_glib_none().0);
from_glib_full(alloc)
}
}
#[doc(alias = "graphene_point_init_from_vec2")]
#[doc(alias = "new_from_vec2")]
pub fn from_vec2(src: &Vec2) -> Point {
assert_initialized_main_thread!();
unsafe {
let alloc = ffi::graphene_point_alloc();
ffi::graphene_point_init_from_vec2(alloc, src.to_glib_none().0);
from_glib_full(alloc)
}
}
}