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
61
62
63
64
65
66
67
68
69
// Take a look at the license at the top of the repository in the LICENSE file.

use crate::Vec3;
use glib::translate::*;

impl Vec3 {
    /// Initializes a [`Vec3`][crate::Vec3] with the values from an array.
    /// ## `src`
    /// an array of 3 floating point values
    ///
    /// # Returns
    ///
    /// the initialized vector
    #[doc(alias = "graphene_vec3_init_from_float")]
    pub fn init_from_float(&mut self, src: &[f32; 3]) {
        unsafe {
            ffi::graphene_vec3_init_from_float(self.to_glib_none_mut().0, src as *const _);
        }
    }

    #[doc(alias = "graphene_vec3_init")]
    pub fn new(x: f32, y: f32, z: f32) -> Vec3 {
        assert_initialized_main_thread!();
        unsafe {
            let alloc = ffi::graphene_vec3_alloc();
            ffi::graphene_vec3_init(alloc, x, y, z);
            from_glib_full(alloc)
        }
    }

    #[doc(alias = "graphene_vec3_init_from_vec3")]
    #[doc(alias = "new_from_vec3")]
    pub fn from_vec3(src: &Vec3) -> Vec3 {
        assert_initialized_main_thread!();
        unsafe {
            let alloc = ffi::graphene_vec3_alloc();
            ffi::graphene_vec3_init_from_vec3(alloc, src.to_glib_none().0);
            from_glib_full(alloc)
        }
    }

    #[doc(alias = "graphene_vec3_init_from_float")]
    #[doc(alias = "new_from_float")]
    pub fn from_float(src: &[f32; 3]) -> Vec3 {
        assert_initialized_main_thread!();
        unsafe {
            let alloc = ffi::graphene_vec3_alloc();
            ffi::graphene_vec3_init_from_float(alloc, src as *const _);
            from_glib_full(alloc)
        }
    }

    /// Copies the components of a [`Vec3`][crate::Vec3] into the given array.
    ///
    /// # Returns
    ///
    ///
    /// ## `dest`
    /// return location for
    ///  an array of floating point values
    #[doc(alias = "graphene_vec3_to_float")]
    pub fn to_float(&self) -> [f32; 3] {
        unsafe {
            let mut out = std::mem::MaybeUninit::uninit();
            ffi::graphene_vec3_to_float(self.to_glib_none().0, out.as_mut_ptr());
            out.assume_init()
        }
    }
}