[]Struct gdnative::gdnative_common::euclid::BoolVector3D

pub struct BoolVector3D {
    pub x: bool,
    pub y: bool,
    pub z: bool,
}

Fields

x: booly: boolz: bool

Methods

impl BoolVector3D

pub fn all(&self) -> bool

pub fn any(&self) -> bool

pub fn none(&self) -> bool

pub fn and(&self, other: BoolVector3D) -> BoolVector3D

pub fn or(&self, other: BoolVector3D) -> BoolVector3D

pub fn not(&self) -> BoolVector3D

pub fn select_point<T, U>(
    &self,
    a: &TypedPoint3D<T, U>,
    b: &TypedPoint3D<T, U>
) -> TypedPoint3D<T, U> where
    T: Copy

pub fn select_vector<T, U>(
    &self,
    a: &TypedVector3D<T, U>,
    b: &TypedVector3D<T, U>
) -> TypedVector3D<T, U> where
    T: Copy

pub fn xy(&self) -> BoolVector2D

pub fn xz(&self) -> BoolVector2D

pub fn yz(&self) -> BoolVector2D

Trait Implementations

impl PartialEq<BoolVector3D> for BoolVector3D

impl Eq for BoolVector3D

impl Clone for BoolVector3D

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for BoolVector3D

impl Copy for BoolVector3D

impl Hash for BoolVector3D

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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