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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
// Take a look at the license at the top of the repository in the LICENSE file.

use std::fmt;

use glib::translate::*;

use crate::{Point3D, Vec3};

impl Point3D {
    /// Initializes a [`Point3D`][crate::Point3D] with the given coordinates.
    /// ## `x`
    /// the X coordinate of the point
    /// ## `y`
    /// the Y coordinate of the point
    /// ## `z`
    /// the Z coordinate of the point
    ///
    /// # Returns
    ///
    /// the initialized [`Point3D`][crate::Point3D]
    #[doc(alias = "graphene_point3d_init")]
    pub fn new(x: f32, y: f32, z: f32) -> Self {
        assert_initialized_main_thread!();
        unsafe {
            let mut p = Self::uninitialized();
            ffi::graphene_point3d_init(p.to_glib_none_mut().0, x, y, z);
            p
        }
    }

    /// Initializes a [`Point3D`][crate::Point3D] using the components
    /// of a [`Vec3`][crate::Vec3].
    /// ## `v`
    /// a [`Vec3`][crate::Vec3]
    ///
    /// # Returns
    ///
    /// the initialized [`Point3D`][crate::Point3D]
    #[doc(alias = "graphene_point3d_init_from_vec3")]
    #[doc(alias = "init_from_vec3")]
    pub fn from_vec3(v: &Vec3) -> Self {
        assert_initialized_main_thread!();
        unsafe {
            let mut p = Self::uninitialized();
            ffi::graphene_point3d_init_from_vec3(p.to_glib_none_mut().0, v.to_glib_none().0);
            p
        }
    }

    #[inline]
    pub fn x(&self) -> f32 {
        self.inner.x
    }

    #[inline]
    pub fn set_x(&mut self, x: f32) {
        self.inner.x = x;
    }

    #[inline]
    pub fn y(&self) -> f32 {
        self.inner.y
    }

    #[inline]
    pub fn set_y(&mut self, y: f32) {
        self.inner.y = y;
    }

    #[inline]
    pub fn z(&self) -> f32 {
        self.inner.z
    }

    #[inline]
    pub fn set_z(&mut self, z: f32) {
        self.inner.z = z;
    }
}

impl fmt::Debug for Point3D {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_struct("Point3D")
            .field("x", &self.x())
            .field("y", &self.y())
            .field("z", &self.z())
            .finish()
    }
}

impl Default for Point3D {
    fn default() -> Self {
        Self::zero()
    }
}