graphene/auto/
triangle.rsuse crate::{ffi, Box, Plane, Point3D, Vec2, Vec3};
use glib::translate::*;
glib::wrapper! {
pub struct Triangle(BoxedInline<ffi::graphene_triangle_t>);
match fn {
copy => |ptr| glib::gobject_ffi::g_boxed_copy(ffi::graphene_triangle_get_type(), ptr as *mut _) as *mut ffi::graphene_triangle_t,
free => |ptr| glib::gobject_ffi::g_boxed_free(ffi::graphene_triangle_get_type(), ptr as *mut _),
type_ => || ffi::graphene_triangle_get_type(),
}
}
impl Triangle {
#[doc(alias = "graphene_triangle_contains_point")]
pub fn contains_point(&self, p: &Point3D) -> bool {
unsafe { ffi::graphene_triangle_contains_point(self.to_glib_none().0, p.to_glib_none().0) }
}
#[doc(alias = "graphene_triangle_equal")]
fn equal(&self, b: &Triangle) -> bool {
unsafe { ffi::graphene_triangle_equal(self.to_glib_none().0, b.to_glib_none().0) }
}
#[doc(alias = "graphene_triangle_get_area")]
#[doc(alias = "get_area")]
pub fn area(&self) -> f32 {
unsafe { ffi::graphene_triangle_get_area(self.to_glib_none().0) }
}
#[doc(alias = "graphene_triangle_get_barycoords")]
#[doc(alias = "get_barycoords")]
pub fn barycoords(&self, p: Option<&Point3D>) -> Option<Vec2> {
unsafe {
let mut res = Vec2::uninitialized();
let ret = ffi::graphene_triangle_get_barycoords(
self.to_glib_none().0,
p.to_glib_none().0,
res.to_glib_none_mut().0,
);
if ret {
Some(res)
} else {
None
}
}
}
#[doc(alias = "graphene_triangle_get_bounding_box")]
#[doc(alias = "get_bounding_box")]
pub fn bounding_box(&self) -> Box {
unsafe {
let mut res = Box::uninitialized();
ffi::graphene_triangle_get_bounding_box(
self.to_glib_none().0,
res.to_glib_none_mut().0,
);
res
}
}
#[doc(alias = "graphene_triangle_get_midpoint")]
#[doc(alias = "get_midpoint")]
pub fn midpoint(&self) -> Point3D {
unsafe {
let mut res = Point3D::uninitialized();
ffi::graphene_triangle_get_midpoint(self.to_glib_none().0, res.to_glib_none_mut().0);
res
}
}
#[doc(alias = "graphene_triangle_get_normal")]
#[doc(alias = "get_normal")]
pub fn normal(&self) -> Vec3 {
unsafe {
let mut res = Vec3::uninitialized();
ffi::graphene_triangle_get_normal(self.to_glib_none().0, res.to_glib_none_mut().0);
res
}
}
#[doc(alias = "graphene_triangle_get_plane")]
#[doc(alias = "get_plane")]
pub fn plane(&self) -> Plane {
unsafe {
let mut res = Plane::uninitialized();
ffi::graphene_triangle_get_plane(self.to_glib_none().0, res.to_glib_none_mut().0);
res
}
}
#[doc(alias = "graphene_triangle_get_points")]
#[doc(alias = "get_points")]
pub fn points(&self) -> (Point3D, Point3D, Point3D) {
unsafe {
let mut a = Point3D::uninitialized();
let mut b = Point3D::uninitialized();
let mut c = Point3D::uninitialized();
ffi::graphene_triangle_get_points(
self.to_glib_none().0,
a.to_glib_none_mut().0,
b.to_glib_none_mut().0,
c.to_glib_none_mut().0,
);
(a, b, c)
}
}
#[doc(alias = "graphene_triangle_get_uv")]
#[doc(alias = "get_uv")]
pub fn uv(&self, p: Option<&Point3D>, uv_a: &Vec2, uv_b: &Vec2, uv_c: &Vec2) -> Option<Vec2> {
unsafe {
let mut res = Vec2::uninitialized();
let ret = ffi::graphene_triangle_get_uv(
self.to_glib_none().0,
p.to_glib_none().0,
uv_a.to_glib_none().0,
uv_b.to_glib_none().0,
uv_c.to_glib_none().0,
res.to_glib_none_mut().0,
);
if ret {
Some(res)
} else {
None
}
}
}
#[doc(alias = "graphene_triangle_get_vertices")]
#[doc(alias = "get_vertices")]
pub fn vertices(&self) -> (Vec3, Vec3, Vec3) {
unsafe {
let mut a = Vec3::uninitialized();
let mut b = Vec3::uninitialized();
let mut c = Vec3::uninitialized();
ffi::graphene_triangle_get_vertices(
self.to_glib_none().0,
a.to_glib_none_mut().0,
b.to_glib_none_mut().0,
c.to_glib_none_mut().0,
);
(a, b, c)
}
}
}
impl PartialEq for Triangle {
#[inline]
fn eq(&self, other: &Self) -> bool {
self.equal(other)
}
}
impl Eq for Triangle {}