pub struct Triangle {
pub vertices: [Vec3; 3],
pub i1: i32,
pub i2: i32,
pub i3: i32,
pub flags: i32,
}Expand description
A triangle with vertex indices and edge flags. (math_internal.h: b3Triangle)
Fields§
§vertices: [Vec3; 3]§i1: i32§i2: i32§i3: i32§flags: i32Trait Implementations§
impl Copy for Triangle
impl StructuralPartialEq for Triangle
Auto Trait Implementations§
impl Freeze for Triangle
impl RefUnwindSafe for Triangle
impl Send for Triangle
impl Sync for Triangle
impl Unpin for Triangle
impl UnsafeUnpin for Triangle
impl UnwindSafe for Triangle
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more