Trait na::Swizzles3[][src]

pub trait Swizzles3<T: Scalar>: Swizzles2<T> {
    type Swizzle3;
    fn xyz(&self) -> Self::Swizzle3;
fn xzy(&self) -> Self::Swizzle3;
fn yxz(&self) -> Self::Swizzle3;
fn yzx(&self) -> Self::Swizzle3;
fn zxy(&self) -> Self::Swizzle3;
fn zyx(&self) -> Self::Swizzle3;
fn yz(&self) -> Self::Swizzle2;
fn xz(&self) -> Self::Swizzle2;
fn zy(&self) -> Self::Swizzle2;
fn zx(&self) -> Self::Swizzle2; }

Associated Types

type Swizzle3[src]

Loading content...

Required methods

fn xyz(&self) -> Self::Swizzle3[src]

fn xzy(&self) -> Self::Swizzle3[src]

fn yxz(&self) -> Self::Swizzle3[src]

fn yzx(&self) -> Self::Swizzle3[src]

fn zxy(&self) -> Self::Swizzle3[src]

fn zyx(&self) -> Self::Swizzle3[src]

fn yz(&self) -> Self::Swizzle2[src]

fn xz(&self) -> Self::Swizzle2[src]

fn zy(&self) -> Self::Swizzle2[src]

fn zx(&self) -> Self::Swizzle2[src]

Loading content...

Implementors

impl<T: Scalar> Swizzles3<T> for Point3<T>[src]

type Swizzle3 = Point3<T>

impl<T: Scalar> Swizzles3<T> for Point4<T>[src]

type Swizzle3 = Point3<T>

impl<T: Scalar> Swizzles3<T> for Point5<T>[src]

type Swizzle3 = Point3<T>

impl<T: Scalar> Swizzles3<T> for Point6<T>[src]

type Swizzle3 = Point3<T>

impl<T: Scalar> Swizzles3<T> for Vector3<T>[src]

type Swizzle3 = Vector3<T>

impl<T: Scalar> Swizzles3<T> for Vector4<T>[src]

type Swizzle3 = Vector3<T>

impl<T: Scalar> Swizzles3<T> for Vector5<T>[src]

type Swizzle3 = Vector3<T>

impl<T: Scalar> Swizzles3<T> for Vector6<T>[src]

type Swizzle3 = Vector3<T>

Loading content...