Type Alias Vector3

pub type Vector3 = Point3;

Aliased Type§

struct Vector3 {
    pub x: f32,
    pub y: f32,
    pub z: f32,
}

Fields§

§x: f32§y: f32§z: f32

Implementations

§

impl Point3

pub const fn new(x: f32, y: f32, z: f32) -> Point3

pub fn set(&mut self, x: f32, y: f32, z: f32)

pub fn length_xyz(x: f32, y: f32, z: f32) -> f32

pub fn length(&self) -> f32

pub fn normalize(&mut self) -> bool

pub fn normalized(&self) -> Option<Point3>

pub fn scaled(&self, scale: f32) -> Point3

pub fn scale(&mut self, value: f32)

pub fn is_finite(&self) -> bool

pub fn dot_product(a: Point3, b: Point3) -> f32

pub fn dot(&self, vec: Point3) -> f32

pub fn cross_product(a: Point3, b: Point3) -> Point3

pub fn cross(&self, vec: Point3) -> Point3

Trait Implementations

§

impl Add for Point3

§

type Output = Point3

The resulting type after applying the + operator.
§

fn add(self, rhs: Point3) -> <Point3 as Add>::Output

Performs the + operation. Read more
§

impl AddAssign for Point3

§

fn add_assign(&mut self, rhs: Point3)

Performs the += operation. Read more
§

impl Clone for Point3

§

fn clone(&self) -> Point3

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
§

impl Debug for Point3

§

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

Formats the value using the given formatter. Read more
§

impl Default for Point3

§

fn default() -> Point3

Returns the “default value” for a type. Read more
§

impl From<(f32, f32, f32)> for Point3

§

fn from(_: (f32, f32, f32)) -> Point3

Converts to this type from the input type.
§

impl Neg for Point3

§

type Output = Point3

The resulting type after applying the - operator.
§

fn neg(self) -> <Point3 as Neg>::Output

Performs the unary - operation. Read more
§

impl PartialEq for Point3

§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

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

impl Sub for Point3

§

type Output = Point3

The resulting type after applying the - operator.
§

fn sub(self, rhs: Point3) -> <Point3 as Sub>::Output

Performs the - operation. Read more
§

impl SubAssign for Point3

§

fn sub_assign(&mut self, rhs: Point3)

Performs the -= operation. Read more
§

impl Copy for Point3

§

impl StructuralPartialEq for Point3