Struct euclid::vector::BoolVector3D

source ·
pub struct BoolVector3D {
    pub x: bool,
    pub y: bool,
    pub z: bool,
}
Expand description

A 3d vector of booleans, useful for component-wise logic operations.

Fields§

§x: bool§y: bool§z: bool

Implementations§

source§

impl BoolVector3D

source

pub fn all(self) -> bool

Returns true if all components are true and false otherwise.

source

pub fn any(self) -> bool

Returns true if any component are true and false otherwise.

source

pub fn none(self) -> bool

Returns true if all components are false and false otherwise. Negation of any().

source

pub fn and(self, other: Self) -> Self

Returns new vector with by-component AND operation applied.

source

pub fn or(self, other: Self) -> Self

Returns new vector with by-component OR operation applied.

source

pub fn not(self) -> Self

Returns new vector with results of negation operation on each component.

source

pub fn select_point<T, U>( self, a: Point3D<T, U>, b: Point3D<T, U> ) -> Point3D<T, U>

Returns point, each component of which or from a, or from b depending on truly value of corresponding vector component. true selects value from a and false from b.

source

pub fn select_vector<T, U>( self, a: Vector3D<T, U>, b: Vector3D<T, U> ) -> Vector3D<T, U>

Returns vector, each component of which or from a, or from b depending on truly value of corresponding vector component. true selects value from a and false from b.

source

pub fn select_size<T, U>(self, a: Size3D<T, U>, b: Size3D<T, U>) -> Size3D<T, U>

Returns size, each component of which or from a, or from b depending on truly value of corresponding vector component. true selects value from a and false from b.

source

pub fn xy(self) -> BoolVector2D

Returns a 2d vector using this vector’s x and y coordinates.

source

pub fn xz(self) -> BoolVector2D

Returns a 2d vector using this vector’s x and z coordinates.

source

pub fn yz(self) -> BoolVector2D

Returns a 2d vector using this vector’s y and z coordinates.

Trait Implementations§

source§

impl Clone for BoolVector3D

source§

fn clone(&self) -> BoolVector3D

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for BoolVector3D

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Hash for BoolVector3D

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

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

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<BoolVector3D> for BoolVector3D

source§

fn eq(&self, other: &BoolVector3D) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for BoolVector3D

source§

impl Eq for BoolVector3D

source§

impl StructuralEq for BoolVector3D

source§

impl StructuralPartialEq for BoolVector3D

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.