Struct bevy_hexasphere::Triangle[][src]

pub struct Triangle {
    pub a: u32,
    pub b: u32,
    pub c: u32,
    pub ab_edge: usize,
    pub bc_edge: usize,
    pub ca_edge: usize,
    // some fields omitted
}

Fields

a: u32b: u32c: u32ab_edge: usizebc_edge: usizeca_edge: usize

Implementations

impl Triangle[src]

pub const fn new(
    a: u32,
    b: u32,
    c: u32,
    ab_edge: usize,
    bc_edge: usize,
    ca_edge: usize
) -> Self
[src]

Trait Implementations

impl Clone for Triangle[src]

impl Debug for Triangle[src]

impl Default for Triangle[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.