Struct godot::builtin::Vector4

source ·
#[repr(C)]
pub struct Vector4 { pub x: f32, pub y: f32, pub z: f32, pub w: f32, }
Expand description

Vector used for 4D math using floating point coordinates.

4-element structure that can be used to represent any quadruplet of numeric values.

It uses floating-point coordinates of 32-bit precision, unlike the engine’s float type which is always 64-bit. The engine can be compiled with the option precision=double to use 64-bit vectors; use the gdext library with the double-precision feature in that case.

See Vector4i for its integer counterpart.

Fields§

§x: f32

The vector’s X component.

§y: f32

The vector’s Y component.

§z: f32

The vector’s Z component.

§w: f32

The vector’s W component.

Implementations§

source§

impl Vector4

source

pub const ZERO: Vector4 = _

Zero vector, a vector with all components set to 0.

source

pub const ONE: Vector4 = _

One vector, a vector with all components set to 1.

source§

impl Vector4

source

pub const INF: Vector4 = _

Infinity vector, a vector with all components set to real::INFINITY.

source§

impl Vector4

source

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

Returns a vector with the given components.

source

pub const fn splat(v: f32) -> Vector4

Returns a new vector with all components set to v.

source

pub fn abs(self) -> Vector4

Returns a new vector with all components in absolute values (i.e. positive or zero).

source

pub fn clamp(self, min: Vector4, max: Vector4) -> Vector4

Returns a new vector with all components clamped between the components of min and max.

§Panics

If min > max, min is NaN, or max is NaN.

source

pub fn length(self) -> f32

Returns the length (magnitude) of this vector.

source

pub fn length_squared(self) -> f32

Squared length (squared magnitude) of this vector.

Runs faster than Self::length, so prefer it if you need to compare vectors or need the squared distance for some formula.

source

pub fn coord_min(self, other: Vector4) -> Vector4

Returns a new vector containing the minimum of the two vectors, component-wise.

source

pub fn coord_max(self, other: Vector4) -> Vector4

Returns a new vector containing the maximum of the two vectors, component-wise.

source

pub fn sign(self) -> Vector4

Returns a new vector with each component set to 1 if it’s positive, -1 if it’s negative, and 0 if it’s zero.

source§

impl Vector4

source

pub fn ceil(self) -> Vector4

Returns a new vector with all components rounded up (towards positive infinity).

source

pub fn cubic_interpolate( self, b: Vector4, pre_a: Vector4, post_b: Vector4, weight: f32, ) -> Vector4

Performs a cubic interpolation between this vector and b using pre_a and post_b as handles, and returns the result at position weight.

weight is on the range of 0.0 to 1.0, representing the amount of interpolation.

source

pub fn cubic_interpolate_in_time( self, b: Vector4, pre_a: Vector4, post_b: Vector4, weight: f32, b_t: f32, pre_a_t: f32, post_b_t: f32, ) -> Vector4

Performs a cubic interpolation between this vector and b using pre_a and post_b as handles, and returns the result at position weight.

weight is on the range of 0.0 to 1.0, representing the amount of interpolation. It can perform smoother interpolation than Self::cubic_interpolate by the time values.

source

pub fn direction_to(self, to: Vector4) -> Vector4

Returns the normalized vector pointing from this vector to to.

This is equivalent to using (b - a).normalized().

source

pub fn distance_squared_to(self, to: Vector4) -> f32

Returns the squared distance between this vector and to.

This method runs faster than Self::distance_to, so prefer it if you need to compare vectors or need the squared distance for some formula.

source

pub fn distance_to(self, to: Vector4) -> f32

Returns the distance between this vector and to.

source

pub fn dot(self, with: Vector4) -> f32

Returns the dot product of this vector and with.

source

pub fn floor(self) -> Vector4

Returns a new vector with all components rounded down (towards negative infinity).

source

pub fn is_finite(self) -> bool

Returns true if each component of this vector is finite.

source

pub fn is_normalized(self) -> bool

Returns true if the vector is normalized, i.e. its length is approximately equal to 1.

source

pub fn is_zero_approx(self) -> bool

Returns true if this vector’s values are approximately zero.

This method is faster than using approx_eq() with one value as a zero vector.

source

pub fn lerp(self, other: Vector4, weight: f32) -> Vector4

Returns the result of the linear interpolation between this vector and to by amount weight.

weight is on the range of 0.0 to 1.0, representing the amount of interpolation.

source

pub fn normalized(self) -> Vector4

Returns the vector scaled to unit length. Equivalent to self / self.length(). See also is_normalized().

§Panics

If called on a zero vector.

source

pub fn posmod(self, pmod: f32) -> Vector4

Returns a vector composed of the FloatExt::fposmod of this vector’s components and pmod.

source

pub fn posmodv(self, modv: Vector4) -> Vector4

Returns a vector composed of the FloatExt::fposmod of this vector’s components and modv’s components.

source

pub fn round(self) -> Vector4

Returns a new vector with all components rounded to the nearest integer, with halfway cases rounded away from zero.

source

pub fn snapped(self, step: Vector4) -> Vector4

A new vector with each component snapped to the closest multiple of the corresponding component in step.

source§

impl Vector4

source

pub fn max_axis(self) -> Option<Vector4Axis>

Returns the axis of the vector’s highest value. See Vector4Axis enum. If all components are equal, this method returns None.

To mimic Godot’s behavior, unwrap this function’s result with unwrap_or(Vector4Axis::X).

source

pub fn min_axis(self) -> Option<Vector4Axis>

Returns the axis of the vector’s lowest value. See Vector4Axis enum. If all components are equal, this method returns None.

To mimic Godot’s behavior, unwrap this function’s result with unwrap_or(Vector4Axis::W).

source§

impl Vector4

source

pub fn recip(self) -> Vector4

Returns the reciprocal (inverse) of the vector. This is the same as 1.0/n for each component.

source§

impl Vector4

source

pub const fn from_vector4i(v: Vector4i) -> Vector4

Constructs a new Vector4 from a Vector4i.

Trait Implementations§

source§

impl Add for Vector4

§

type Output = Vector4

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl AddAssign for Vector4

source§

fn add_assign(&mut self, rhs: Vector4)

Performs the += operation. Read more
source§

impl ApproxEq for Vector4

source§

fn approx_eq(&self, other: &Vector4) -> bool

Returns true if this vector and to are approximately equal.

source§

impl Clone for Vector4

source§

fn clone(&self) -> Vector4

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 Vector4

source§

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

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

impl Default for Vector4

source§

fn default() -> Vector4

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

impl Display for Vector4

Formats the vector like Godot: (x, y, z, w).

source§

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

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

impl Div<f32> for Vector4

§

type Output = Vector4

The resulting type after applying the / operator.
source§

fn div(self, rhs: f32) -> <Vector4 as Div<f32>>::Output

Performs the / operation. Read more
source§

impl Div for Vector4

§

type Output = Vector4

The resulting type after applying the / operator.
source§

fn div(self, rhs: Vector4) -> <Vector4 as Div>::Output

Performs the / operation. Read more
source§

impl DivAssign<f32> for Vector4

source§

fn div_assign(&mut self, rhs: f32)

Performs the /= operation. Read more
source§

impl DivAssign for Vector4

source§

fn div_assign(&mut self, rhs: Vector4)

Performs the /= operation. Read more
source§

impl Export for Vector4

source§

fn default_export_info() -> PropertyHintInfo

The export info to use for an exported field of this type, if no other export info is specified.
source§

impl FromGodot for Vector4

source§

fn try_from_godot( via: <Vector4 as GodotConvert>::Via, ) -> Result<Vector4, ConvertError>

Converts the Godot representation to this type, returning Err on failure.
source§

fn from_godot(via: Self::Via) -> Self

⚠️ Converts the Godot representation to this type. Read more
source§

fn try_from_variant(variant: &Variant) -> Result<Self, ConvertError>

Performs the conversion from a Variant, returning Err on failure.
source§

fn from_variant(variant: &Variant) -> Self

⚠️ Performs the conversion from a Variant. Read more
source§

impl GodotConvert for Vector4

§

type Via = Vector4

The type through which Self is represented in Godot.
source§

impl Index<Vector4Axis> for Vector4

§

type Output = f32

The returned type after indexing.
source§

fn index(&self, axis: Vector4Axis) -> &f32

Performs the indexing (container[index]) operation. Read more
source§

impl IndexMut<Vector4Axis> for Vector4

source§

fn index_mut(&mut self, axis: Vector4Axis) -> &mut f32

Performs the mutable indexing (container[index]) operation. Read more
source§

impl Mul<Vector4> for Projection

§

type Output = Vector4

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Vector4) -> <Projection as Mul<Vector4>>::Output

Performs the * operation. Read more
source§

impl Mul<f32> for Vector4

§

type Output = Vector4

The resulting type after applying the * operator.
source§

fn mul(self, rhs: f32) -> <Vector4 as Mul<f32>>::Output

Performs the * operation. Read more
source§

impl Mul for Vector4

§

type Output = Vector4

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Vector4) -> <Vector4 as Mul>::Output

Performs the * operation. Read more
source§

impl MulAssign<f32> for Vector4

source§

fn mul_assign(&mut self, rhs: f32)

Performs the *= operation. Read more
source§

impl MulAssign for Vector4

source§

fn mul_assign(&mut self, rhs: Vector4)

Performs the *= operation. Read more
source§

impl Neg for Vector4

§

type Output = Vector4

The resulting type after applying the - operator.
source§

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

Performs the unary - operation. Read more
source§

impl PartialEq for Vector4

source§

fn eq(&self, other: &Vector4) -> 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<'a> Product<&'a Vector4> for Vector4

source§

fn product<I>(iter: I) -> Vector4
where I: Iterator<Item = &'a Vector4>,

Element-wise product of all vectors in the iterator.

source§

impl Product for Vector4

source§

fn product<I>(iter: I) -> Vector4
where I: Iterator<Item = Vector4>,

Element-wise product of all vectors in the iterator.

source§

impl Sub for Vector4

§

type Output = Vector4

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

impl SubAssign for Vector4

source§

fn sub_assign(&mut self, rhs: Vector4)

Performs the -= operation. Read more
source§

impl<'a> Sum<&'a Vector4> for Vector4

source§

fn sum<I>(iter: I) -> Vector4
where I: Iterator<Item = &'a Vector4>,

Element-wise sum of all vectors in the iterator.

source§

impl Sum for Vector4

source§

fn sum<I>(iter: I) -> Vector4
where I: Iterator<Item = Vector4>,

Element-wise sum of all vectors in the iterator.

source§

impl ToGodot for Vector4

source§

fn to_godot(&self) -> <Vector4 as GodotConvert>::Via

Converts this type to the Godot type by reference, usually by cloning.
source§

fn into_godot(self) -> <Vector4 as GodotConvert>::Via

Converts this type to the Godot type. Read more
source§

fn to_variant(&self) -> Variant

Converts this type to a Variant.
source§

impl TypeStringHint for Vector4

source§

fn type_string() -> String

Returns the representation of this type as a type string. Read more
source§

impl Var for Vector4

source§

impl ArrayElement for Vector4

source§

impl Copy for Vector4

source§

impl GodotType for Vector4

source§

impl StructuralPartialEq for Vector4

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> CloneToUninit for T
where T: Copy,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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 T
where 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 T
where 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> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where 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 T
where 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.