#[repr(C)]pub struct Vector3<S> {
pub x: S,
pub y: S,
pub z: S,
}
Expand description
A 3-dimensional vector.
This type is marked as #[repr(C)]
.
Fields§
§x: S
The x component of the vector.
y: S
The y component of the vector.
z: S
The z component of the vector.
Implementations§
Trait Implementations§
source§impl<S: BaseNum + AddAssign<S>> AddAssign<Vector3<S>> for Point3<S>
impl<S: BaseNum + AddAssign<S>> AddAssign<Vector3<S>> for Point3<S>
source§fn add_assign(&mut self, vector: Vector3<S>)
fn add_assign(&mut self, vector: Vector3<S>)
Performs the
+=
operation. Read moresource§impl<S: BaseNum + AddAssign<S>> AddAssign<Vector3<S>> for Vector3<S>
impl<S: BaseNum + AddAssign<S>> AddAssign<Vector3<S>> for Vector3<S>
source§fn add_assign(&mut self, other: Vector3<S>)
fn add_assign(&mut self, other: Vector3<S>)
Performs the
+=
operation. Read moresource§impl<S: BaseFloat> ApproxEq for Vector3<S>
impl<S: BaseFloat> ApproxEq for Vector3<S>
source§fn default_epsilon() -> S::Epsilon
fn default_epsilon() -> S::Epsilon
The default tolerance to use when testing values that are close together. Read more
source§fn default_max_relative() -> S::Epsilon
fn default_max_relative() -> S::Epsilon
The default relative tolerance for testing values that are far-apart. Read more
source§fn default_max_ulps() -> u32
fn default_max_ulps() -> u32
The default ULPs to tolerate when testing values that are far-apart. Read more
source§fn relative_eq(
&self,
other: &Self,
epsilon: S::Epsilon,
max_relative: S::Epsilon
) -> bool
fn relative_eq( &self, other: &Self, epsilon: S::Epsilon, max_relative: S::Epsilon ) -> bool
A test for equality that uses a relative comparison if the values are far apart.
source§fn ulps_eq(&self, other: &Self, epsilon: S::Epsilon, max_ulps: u32) -> bool
fn ulps_eq(&self, other: &Self, epsilon: S::Epsilon, max_ulps: u32) -> bool
A test for equality that uses units in the last place (ULP) if the values are far apart.
source§impl<S: Copy> Array for Vector3<S>
impl<S: Copy> Array for Vector3<S>
type Element = S
source§fn from_value(scalar: S) -> Vector3<S>
fn from_value(scalar: S) -> Vector3<S>
Construct a vector from a single value, replicating it. Read more
source§fn min(self) -> Swhere
S: PartialOrd,
fn min(self) -> Swhere S: PartialOrd,
The minimum element of the array.
source§fn max(self) -> Swhere
S: PartialOrd,
fn max(self) -> Swhere S: PartialOrd,
The maximum element of the array.
source§fn as_mut_ptr(&mut self) -> *mut Self::Element
fn as_mut_ptr(&mut self) -> *mut Self::Element
Get a mutable pointer to the first element of the array.
source§fn swap_elements(&mut self, i: usize, j: usize)
fn swap_elements(&mut self, i: usize, j: usize)
Swap the elements at indices
i
and j
in-place.source§impl<S: BaseNum + DivAssign<S>> DivAssign<S> for Vector3<S>
impl<S: BaseNum + DivAssign<S>> DivAssign<S> for Vector3<S>
source§fn div_assign(&mut self, scalar: S)
fn div_assign(&mut self, scalar: S)
Performs the
/=
operation. Read moresource§impl<S: BaseNum> ElementWise<S> for Vector3<S>
impl<S: BaseNum> ElementWise<S> for Vector3<S>
fn add_element_wise(self, rhs: S) -> Vector3<S>
fn sub_element_wise(self, rhs: S) -> Vector3<S>
fn mul_element_wise(self, rhs: S) -> Vector3<S>
fn div_element_wise(self, rhs: S) -> Vector3<S>
fn rem_element_wise(self, rhs: S) -> Vector3<S>
fn add_assign_element_wise(&mut self, rhs: S)
fn sub_assign_element_wise(&mut self, rhs: S)
fn mul_assign_element_wise(&mut self, rhs: S)
fn div_assign_element_wise(&mut self, rhs: S)
fn rem_assign_element_wise(&mut self, rhs: S)
source§impl<S: BaseNum> ElementWise<Vector3<S>> for Vector3<S>
impl<S: BaseNum> ElementWise<Vector3<S>> for Vector3<S>
fn add_element_wise(self, rhs: Vector3<S>) -> Vector3<S>
fn sub_element_wise(self, rhs: Vector3<S>) -> Vector3<S>
fn mul_element_wise(self, rhs: Vector3<S>) -> Vector3<S>
fn div_element_wise(self, rhs: Vector3<S>) -> Vector3<S>
fn rem_element_wise(self, rhs: Vector3<S>) -> Vector3<S>
fn add_assign_element_wise(&mut self, rhs: Vector3<S>)
fn sub_assign_element_wise(&mut self, rhs: Vector3<S>)
fn mul_assign_element_wise(&mut self, rhs: Vector3<S>)
fn div_assign_element_wise(&mut self, rhs: Vector3<S>)
fn rem_assign_element_wise(&mut self, rhs: Vector3<S>)
source§impl<S: BaseFloat> InnerSpace for Vector3<S>
impl<S: BaseFloat> InnerSpace for Vector3<S>
source§fn is_perpendicular(self, other: Self) -> bool
fn is_perpendicular(self, other: Self) -> bool
Returns
true
if the vector is perpendicular (at right angles) to the
other vector.source§fn magnitude2(self) -> Self::Scalar
fn magnitude2(self) -> Self::Scalar
Returns the squared magnitude. Read more
source§fn normalize(self) -> Self
fn normalize(self) -> Self
Returns a vector with the same direction, but with a magnitude of
1
.source§fn normalize_to(self, magnitude: Self::Scalar) -> Self
fn normalize_to(self, magnitude: Self::Scalar) -> Self
Returns a vector with the same direction and a given magnitude.
source§impl<S: BaseFloat> MetricSpace for Vector3<S>
impl<S: BaseFloat> MetricSpace for Vector3<S>
source§impl<S: BaseNum + MulAssign<S>> MulAssign<S> for Vector3<S>
impl<S: BaseNum + MulAssign<S>> MulAssign<S> for Vector3<S>
source§fn mul_assign(&mut self, scalar: S)
fn mul_assign(&mut self, scalar: S)
Performs the
*=
operation. Read moresource§impl<S: PartialEq> PartialEq<Vector3<S>> for Vector3<S>
impl<S: PartialEq> PartialEq<Vector3<S>> for Vector3<S>
source§impl<S: BaseNum + RemAssign<S>> RemAssign<S> for Vector3<S>
impl<S: BaseNum + RemAssign<S>> RemAssign<S> for Vector3<S>
source§fn rem_assign(&mut self, scalar: S)
fn rem_assign(&mut self, scalar: S)
Performs the
%=
operation. Read moresource§impl<S: BaseNum + SubAssign<S>> SubAssign<Vector3<S>> for Vector3<S>
impl<S: BaseNum + SubAssign<S>> SubAssign<Vector3<S>> for Vector3<S>
source§fn sub_assign(&mut self, other: Vector3<S>)
fn sub_assign(&mut self, other: Vector3<S>)
Performs the
-=
operation. Read moreimpl<S: Copy> Copy for Vector3<S>
impl<S: Eq> Eq for Vector3<S>
impl<S> StructuralEq for Vector3<S>
impl<S> StructuralPartialEq for Vector3<S>
Auto Trait Implementations§
impl<S> RefUnwindSafe for Vector3<S>where S: RefUnwindSafe,
impl<S> Send for Vector3<S>where S: Send,
impl<S> Sync for Vector3<S>where S: Sync,
impl<S> Unpin for Vector3<S>where S: Unpin,
impl<S> UnwindSafe for Vector3<S>where S: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more