Trait rs_math3d::vector::Swizzle3[][src]

pub trait Swizzle3<T: Scalar> {
Show methods fn xxx(&self) -> Vector3<T>;
fn xxy(&self) -> Vector3<T>;
fn xxz(&self) -> Vector3<T>;
fn xyx(&self) -> Vector3<T>;
fn xyy(&self) -> Vector3<T>;
fn xyz(&self) -> Vector3<T>;
fn xzx(&self) -> Vector3<T>;
fn xzy(&self) -> Vector3<T>;
fn xzz(&self) -> Vector3<T>;
fn yxx(&self) -> Vector3<T>;
fn yxy(&self) -> Vector3<T>;
fn yxz(&self) -> Vector3<T>;
fn yyx(&self) -> Vector3<T>;
fn yyy(&self) -> Vector3<T>;
fn yyz(&self) -> Vector3<T>;
fn yzx(&self) -> Vector3<T>;
fn yzy(&self) -> Vector3<T>;
fn yzz(&self) -> Vector3<T>;
fn zxx(&self) -> Vector3<T>;
fn zxy(&self) -> Vector3<T>;
fn zxz(&self) -> Vector3<T>;
fn zyx(&self) -> Vector3<T>;
fn zyy(&self) -> Vector3<T>;
fn zyz(&self) -> Vector3<T>;
fn zzx(&self) -> Vector3<T>;
fn zzy(&self) -> Vector3<T>;
fn zzz(&self) -> Vector3<T>;
}

Required methods

Implementors