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
// Take a look at the license at the top of the repository in the LICENSE file.

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

impl Ray {
    #[doc(alias = "graphene_ray_init")]
    pub fn new(origin: Option<&Point3D>, direction: Option<&Vec3>) -> Ray {
        assert_initialized_main_thread!();
        unsafe {
            let alloc = ffi::graphene_ray_alloc();
            ffi::graphene_ray_init(alloc, origin.to_glib_none().0, direction.to_glib_none().0);
            from_glib_full(alloc)
        }
    }

    #[doc(alias = "graphene_ray_init_from_ray")]
    #[doc(alias = "new_from_ray")]
    pub fn from_ray(src: &Ray) -> Ray {
        assert_initialized_main_thread!();
        unsafe {
            let alloc = ffi::graphene_ray_alloc();
            ffi::graphene_ray_init_from_ray(alloc, src.to_glib_none().0);
            from_glib_full(alloc)
        }
    }

    #[doc(alias = "graphene_ray_init_from_vec3")]
    #[doc(alias = "new_from_vec3")]
    pub fn from_vec3(origin: Option<&Vec3>, direction: Option<&Vec3>) -> Ray {
        assert_initialized_main_thread!();
        unsafe {
            let alloc = ffi::graphene_ray_alloc();
            ffi::graphene_ray_init_from_vec3(
                alloc,
                origin.to_glib_none().0,
                direction.to_glib_none().0,
            );
            from_glib_full(alloc)
        }
    }
}