2014-05-26 17:10:04 +00:00
|
|
|
// Copyright 2013-2014 The CGMath Developers. For a full listing of the authors,
|
2015-03-14 02:49:46 +00:00
|
|
|
// refer to the Cargo.toml file at the top-level directory of this distribution.
|
2013-09-03 03:54:03 +00:00
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2016-04-19 10:51:40 +00:00
|
|
|
use rand::{Rand, Rng};
|
2016-04-23 04:03:35 +00:00
|
|
|
use num_traits::{NumCast, Zero, One};
|
2013-10-19 14:00:44 +00:00
|
|
|
use std::fmt;
|
2014-05-28 01:59:03 +00:00
|
|
|
use std::mem;
|
2015-01-03 21:29:26 +00:00
|
|
|
use std::ops::*;
|
2013-09-03 03:54:03 +00:00
|
|
|
|
2016-04-19 10:51:40 +00:00
|
|
|
use structure::*;
|
2015-04-05 01:19:11 +00:00
|
|
|
|
2016-04-19 10:51:40 +00:00
|
|
|
use angle::Rad;
|
2014-01-09 00:26:50 +00:00
|
|
|
use approx::ApproxEq;
|
2015-11-14 01:03:12 +00:00
|
|
|
use num::{BaseNum, BaseFloat, PartialOrd};
|
2013-09-03 03:54:03 +00:00
|
|
|
|
2016-03-25 01:34:12 +00:00
|
|
|
/// A 2-dimensional vector.
|
|
|
|
///
|
|
|
|
/// This type is marked as `#[repr(C, packed)]`.
|
|
|
|
#[repr(C, packed)]
|
|
|
|
#[derive(PartialEq, Eq, Copy, Clone, Hash, RustcEncodable, RustcDecodable)]
|
|
|
|
pub struct Vector2<S> {
|
2016-04-04 22:52:27 +00:00
|
|
|
/// The x component of the vector.
|
2016-03-25 01:34:12 +00:00
|
|
|
pub x: S,
|
2016-04-04 22:52:27 +00:00
|
|
|
/// The y component of the vector.
|
2016-03-25 01:34:12 +00:00
|
|
|
pub y: S,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// A 3-dimensional vector.
|
|
|
|
///
|
|
|
|
/// This type is marked as `#[repr(C, packed)]`.
|
|
|
|
#[repr(C, packed)]
|
|
|
|
#[derive(PartialEq, Eq, Copy, Clone, Hash, RustcEncodable, RustcDecodable)]
|
|
|
|
pub struct Vector3<S> {
|
2016-04-04 22:52:27 +00:00
|
|
|
/// The x component of the vector.
|
2016-03-25 01:34:12 +00:00
|
|
|
pub x: S,
|
2016-04-04 22:52:27 +00:00
|
|
|
/// The y component of the vector.
|
2016-03-25 01:34:12 +00:00
|
|
|
pub y: S,
|
2016-04-04 22:52:27 +00:00
|
|
|
/// The z component of the vector.
|
2016-03-25 01:34:12 +00:00
|
|
|
pub z: S,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// A 4-dimensional vector.
|
|
|
|
///
|
|
|
|
/// This type is marked as `#[repr(C, packed)]`.
|
|
|
|
#[repr(C, packed)]
|
|
|
|
#[derive(PartialEq, Eq, Copy, Clone, Hash, RustcEncodable, RustcDecodable)]
|
|
|
|
pub struct Vector4<S> {
|
2016-04-04 22:52:27 +00:00
|
|
|
/// The x component of the vector.
|
2016-03-25 01:34:12 +00:00
|
|
|
pub x: S,
|
2016-04-04 22:52:27 +00:00
|
|
|
/// The y component of the vector.
|
2016-03-25 01:34:12 +00:00
|
|
|
pub y: S,
|
2016-04-04 22:52:27 +00:00
|
|
|
/// The z component of the vector.
|
2016-03-25 01:34:12 +00:00
|
|
|
pub z: S,
|
2016-04-04 22:52:27 +00:00
|
|
|
/// The w component of the vector.
|
2016-03-25 01:34:12 +00:00
|
|
|
pub w: S,
|
|
|
|
}
|
|
|
|
|
2014-01-23 16:13:53 +00:00
|
|
|
// Utility macro for generating associated functions for the vectors
|
2015-12-12 11:17:03 +00:00
|
|
|
macro_rules! impl_vector {
|
2016-04-23 09:52:37 +00:00
|
|
|
($VectorN:ident { $($field:ident),+ }, $n:expr, $constructor:ident) => {
|
|
|
|
impl<S> $VectorN<S> {
|
2014-05-25 09:43:51 +00:00
|
|
|
/// Construct a new vector, using the provided values.
|
2014-01-23 16:13:53 +00:00
|
|
|
#[inline]
|
2016-04-23 09:52:37 +00:00
|
|
|
pub fn new($($field: S),+) -> $VectorN<S> {
|
2015-10-02 04:54:33 +00:00
|
|
|
$VectorN { $($field: $field),+ }
|
2014-01-23 16:13:53 +00:00
|
|
|
}
|
2014-05-28 01:59:03 +00:00
|
|
|
}
|
2014-01-23 16:13:53 +00:00
|
|
|
|
2015-02-06 05:16:22 +00:00
|
|
|
/// The short constructor.
|
|
|
|
#[inline]
|
2015-10-02 04:54:33 +00:00
|
|
|
pub fn $constructor<S>($($field: S),+) -> $VectorN<S> {
|
|
|
|
$VectorN::new($($field),+)
|
2015-02-06 05:16:22 +00:00
|
|
|
}
|
|
|
|
|
2016-04-23 09:52:37 +00:00
|
|
|
impl<S: NumCast + Copy> $VectorN<S> {
|
2014-11-20 14:24:38 +00:00
|
|
|
/// Component-wise casting to another type
|
|
|
|
#[inline]
|
2015-10-02 04:54:33 +00:00
|
|
|
pub fn cast<T: NumCast>(&self) -> $VectorN<T> {
|
|
|
|
$VectorN { $($field: NumCast::from(self.$field).unwrap()),+ }
|
2014-11-20 14:24:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-23 09:52:37 +00:00
|
|
|
impl<S: BaseFloat> MetricSpace for $VectorN<S> {
|
|
|
|
type Metric = S;
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn distance2(self, other: Self) -> S {
|
|
|
|
(other - self).magnitude2()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-14 10:58:11 +00:00
|
|
|
impl<S: Copy> Array for $VectorN<S> {
|
2015-11-03 03:15:11 +00:00
|
|
|
type Element = S;
|
2015-11-14 01:03:12 +00:00
|
|
|
|
2016-04-04 09:53:55 +00:00
|
|
|
#[inline]
|
|
|
|
fn from_value(scalar: S) -> $VectorN<S> {
|
|
|
|
$VectorN { $($field: scalar),+ }
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn sum(self) -> S where S: Add<Output = S> {
|
|
|
|
fold_array!(add, { $(self.$field),+ })
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn product(self) -> S where S: Mul<Output = S> {
|
|
|
|
fold_array!(mul, { $(self.$field),+ })
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn min(self) -> S where S: PartialOrd {
|
|
|
|
fold_array!(partial_min, { $(self.$field),+ })
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn max(self) -> S where S: PartialOrd {
|
|
|
|
fold_array!(partial_max, { $(self.$field),+ })
|
|
|
|
}
|
2015-11-03 03:15:11 +00:00
|
|
|
}
|
2014-05-28 01:59:03 +00:00
|
|
|
|
2016-04-07 22:46:35 +00:00
|
|
|
impl<S: BaseNum> VectorSpace for $VectorN<S> {
|
2015-11-03 03:30:59 +00:00
|
|
|
type Scalar = S;
|
|
|
|
|
2016-04-04 09:45:54 +00:00
|
|
|
#[inline]
|
2016-04-04 09:53:55 +00:00
|
|
|
fn zero() -> Self {
|
|
|
|
Self::from_value(Self::Scalar::zero())
|
2016-04-04 09:45:54 +00:00
|
|
|
}
|
2014-05-28 01:59:03 +00:00
|
|
|
}
|
|
|
|
|
2015-10-02 04:54:33 +00:00
|
|
|
impl<S: Neg<Output = S>> Neg for $VectorN<S> {
|
|
|
|
type Output = $VectorN<S>;
|
2015-01-05 01:56:01 +00:00
|
|
|
|
|
|
|
#[inline]
|
2015-10-02 04:54:33 +00:00
|
|
|
fn neg(self) -> $VectorN<S> { $VectorN::new($(-self.$field),+) }
|
2014-01-23 16:13:53 +00:00
|
|
|
}
|
2013-09-06 06:53:37 +00:00
|
|
|
|
2015-11-03 03:00:39 +00:00
|
|
|
impl<S: BaseFloat> ApproxEq for $VectorN<S> {
|
|
|
|
type Epsilon = S;
|
|
|
|
|
2015-01-05 01:56:01 +00:00
|
|
|
#[inline]
|
2015-10-02 04:54:33 +00:00
|
|
|
fn approx_eq_eps(&self, other: &$VectorN<S>, epsilon: &S) -> bool {
|
2015-09-30 07:37:52 +00:00
|
|
|
$(self.$field.approx_eq_eps(&other.$field, epsilon))&&+
|
|
|
|
}
|
2014-01-23 16:13:53 +00:00
|
|
|
}
|
2013-09-06 06:39:15 +00:00
|
|
|
|
2015-10-02 04:54:33 +00:00
|
|
|
impl<S: BaseFloat + Rand> Rand for $VectorN<S> {
|
2015-01-05 01:56:01 +00:00
|
|
|
#[inline]
|
2015-10-02 04:54:33 +00:00
|
|
|
fn rand<R: Rng>(rng: &mut R) -> $VectorN<S> {
|
|
|
|
$VectorN { $($field: rng.gen()),+ }
|
2015-09-30 07:37:52 +00:00
|
|
|
}
|
2014-07-29 05:21:58 +00:00
|
|
|
}
|
2015-09-20 15:32:53 +00:00
|
|
|
|
2015-12-21 13:43:15 +00:00
|
|
|
impl_operator!(<S: BaseNum> Add<$VectorN<S> > for $VectorN<S> {
|
2015-12-12 11:17:03 +00:00
|
|
|
fn add(lhs, rhs) -> $VectorN<S> { $VectorN::new($(lhs.$field + rhs.$field),+) }
|
|
|
|
});
|
2015-12-20 20:24:56 +00:00
|
|
|
impl_assignment_operator!(<S: BaseNum> AddAssign<$VectorN<S> > for $VectorN<S> {
|
|
|
|
fn add_assign(&mut self, other) { $(self.$field += other.$field);+ }
|
|
|
|
});
|
2015-12-12 11:17:03 +00:00
|
|
|
|
2015-12-21 13:43:15 +00:00
|
|
|
impl_operator!(<S: BaseNum> Sub<$VectorN<S> > for $VectorN<S> {
|
2015-12-12 11:17:03 +00:00
|
|
|
fn sub(lhs, rhs) -> $VectorN<S> { $VectorN::new($(lhs.$field - rhs.$field),+) }
|
|
|
|
});
|
2015-12-20 20:24:56 +00:00
|
|
|
impl_assignment_operator!(<S: BaseNum> SubAssign<$VectorN<S> > for $VectorN<S> {
|
|
|
|
fn sub_assign(&mut self, other) { $(self.$field -= other.$field);+ }
|
|
|
|
});
|
2015-12-12 11:17:03 +00:00
|
|
|
|
2015-12-21 13:43:15 +00:00
|
|
|
impl_operator!(<S: BaseNum> Mul<S> for $VectorN<S> {
|
2015-12-12 11:17:03 +00:00
|
|
|
fn mul(vector, scalar) -> $VectorN<S> { $VectorN::new($(vector.$field * scalar),+) }
|
|
|
|
});
|
2015-12-20 20:24:56 +00:00
|
|
|
impl_assignment_operator!(<S: BaseNum> MulAssign<S> for $VectorN<S> {
|
|
|
|
fn mul_assign(&mut self, scalar) { $(self.$field *= scalar);+ }
|
|
|
|
});
|
2015-12-12 11:17:03 +00:00
|
|
|
|
2015-12-21 13:43:15 +00:00
|
|
|
impl_operator!(<S: BaseNum> Div<S> for $VectorN<S> {
|
2015-12-12 11:17:03 +00:00
|
|
|
fn div(vector, scalar) -> $VectorN<S> { $VectorN::new($(vector.$field / scalar),+) }
|
|
|
|
});
|
2015-12-20 20:24:56 +00:00
|
|
|
impl_assignment_operator!(<S: BaseNum> DivAssign<S> for $VectorN<S> {
|
|
|
|
fn div_assign(&mut self, scalar) { $(self.$field /= scalar);+ }
|
|
|
|
});
|
2015-12-12 11:17:03 +00:00
|
|
|
|
2015-12-21 13:43:15 +00:00
|
|
|
impl_operator!(<S: BaseNum> Rem<S> for $VectorN<S> {
|
2015-12-12 11:17:03 +00:00
|
|
|
fn rem(vector, scalar) -> $VectorN<S> { $VectorN::new($(vector.$field % scalar),+) }
|
|
|
|
});
|
2015-12-20 20:24:56 +00:00
|
|
|
impl_assignment_operator!(<S: BaseNum> RemAssign<S> for $VectorN<S> {
|
|
|
|
fn rem_assign(&mut self, scalar) { $(self.$field %= scalar);+ }
|
|
|
|
});
|
2016-03-26 02:19:06 +00:00
|
|
|
|
|
|
|
impl<S: BaseNum> ElementWise for $VectorN<S> {
|
|
|
|
#[inline] fn add_element_wise(self, rhs: $VectorN<S>) -> $VectorN<S> { $VectorN::new($(self.$field + rhs.$field),+) }
|
|
|
|
#[inline] fn sub_element_wise(self, rhs: $VectorN<S>) -> $VectorN<S> { $VectorN::new($(self.$field - rhs.$field),+) }
|
|
|
|
#[inline] fn mul_element_wise(self, rhs: $VectorN<S>) -> $VectorN<S> { $VectorN::new($(self.$field * rhs.$field),+) }
|
|
|
|
#[inline] fn div_element_wise(self, rhs: $VectorN<S>) -> $VectorN<S> { $VectorN::new($(self.$field / rhs.$field),+) }
|
|
|
|
#[inline] fn rem_element_wise(self, rhs: $VectorN<S>) -> $VectorN<S> { $VectorN::new($(self.$field % rhs.$field),+) }
|
|
|
|
|
2016-04-15 07:16:50 +00:00
|
|
|
#[inline] fn add_assign_element_wise(&mut self, rhs: $VectorN<S>) { $(self.$field += rhs.$field);+ }
|
|
|
|
#[inline] fn sub_assign_element_wise(&mut self, rhs: $VectorN<S>) { $(self.$field -= rhs.$field);+ }
|
|
|
|
#[inline] fn mul_assign_element_wise(&mut self, rhs: $VectorN<S>) { $(self.$field *= rhs.$field);+ }
|
|
|
|
#[inline] fn div_assign_element_wise(&mut self, rhs: $VectorN<S>) { $(self.$field /= rhs.$field);+ }
|
|
|
|
#[inline] fn rem_assign_element_wise(&mut self, rhs: $VectorN<S>) { $(self.$field %= rhs.$field);+ }
|
2016-03-26 02:19:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<S: BaseNum> ElementWise<S> for $VectorN<S> {
|
|
|
|
#[inline] fn add_element_wise(self, rhs: S) -> $VectorN<S> { $VectorN::new($(self.$field + rhs),+) }
|
|
|
|
#[inline] fn sub_element_wise(self, rhs: S) -> $VectorN<S> { $VectorN::new($(self.$field - rhs),+) }
|
|
|
|
#[inline] fn mul_element_wise(self, rhs: S) -> $VectorN<S> { $VectorN::new($(self.$field * rhs),+) }
|
|
|
|
#[inline] fn div_element_wise(self, rhs: S) -> $VectorN<S> { $VectorN::new($(self.$field / rhs),+) }
|
|
|
|
#[inline] fn rem_element_wise(self, rhs: S) -> $VectorN<S> { $VectorN::new($(self.$field % rhs),+) }
|
|
|
|
|
2016-04-15 07:16:50 +00:00
|
|
|
#[inline] fn add_assign_element_wise(&mut self, rhs: S) { $(self.$field += rhs);+ }
|
|
|
|
#[inline] fn sub_assign_element_wise(&mut self, rhs: S) { $(self.$field -= rhs);+ }
|
|
|
|
#[inline] fn mul_assign_element_wise(&mut self, rhs: S) { $(self.$field *= rhs);+ }
|
|
|
|
#[inline] fn div_assign_element_wise(&mut self, rhs: S) { $(self.$field /= rhs);+ }
|
|
|
|
#[inline] fn rem_assign_element_wise(&mut self, rhs: S) { $(self.$field %= rhs);+ }
|
2016-03-26 02:19:06 +00:00
|
|
|
}
|
2015-12-12 11:17:03 +00:00
|
|
|
|
2016-01-01 13:09:11 +00:00
|
|
|
impl_scalar_ops!($VectorN<usize> { $($field),+ });
|
|
|
|
impl_scalar_ops!($VectorN<u8> { $($field),+ });
|
|
|
|
impl_scalar_ops!($VectorN<u16> { $($field),+ });
|
|
|
|
impl_scalar_ops!($VectorN<u32> { $($field),+ });
|
|
|
|
impl_scalar_ops!($VectorN<u64> { $($field),+ });
|
|
|
|
impl_scalar_ops!($VectorN<isize> { $($field),+ });
|
|
|
|
impl_scalar_ops!($VectorN<i8> { $($field),+ });
|
|
|
|
impl_scalar_ops!($VectorN<i16> { $($field),+ });
|
|
|
|
impl_scalar_ops!($VectorN<i32> { $($field),+ });
|
|
|
|
impl_scalar_ops!($VectorN<i64> { $($field),+ });
|
|
|
|
impl_scalar_ops!($VectorN<f32> { $($field),+ });
|
|
|
|
impl_scalar_ops!($VectorN<f64> { $($field),+ });
|
|
|
|
|
2015-12-12 11:17:03 +00:00
|
|
|
impl_index_operators!($VectorN<S>, $n, S, usize);
|
|
|
|
impl_index_operators!($VectorN<S>, $n, [S], Range<usize>);
|
|
|
|
impl_index_operators!($VectorN<S>, $n, [S], RangeTo<usize>);
|
|
|
|
impl_index_operators!($VectorN<S>, $n, [S], RangeFrom<usize>);
|
|
|
|
impl_index_operators!($VectorN<S>, $n, [S], RangeFull);
|
2015-09-20 15:32:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-01 13:09:11 +00:00
|
|
|
macro_rules! impl_scalar_ops {
|
|
|
|
($VectorN:ident<$S:ident> { $($field:ident),+ }) => {
|
|
|
|
impl_operator!(Mul<$VectorN<$S>> for $S {
|
|
|
|
fn mul(scalar, vector) -> $VectorN<$S> { $VectorN::new($(scalar * vector.$field),+) }
|
|
|
|
});
|
|
|
|
impl_operator!(Div<$VectorN<$S>> for $S {
|
|
|
|
fn div(scalar, vector) -> $VectorN<$S> { $VectorN::new($(scalar / vector.$field),+) }
|
|
|
|
});
|
|
|
|
impl_operator!(Rem<$VectorN<$S>> for $S {
|
|
|
|
fn rem(scalar, vector) -> $VectorN<$S> { $VectorN::new($(scalar % vector.$field),+) }
|
|
|
|
});
|
|
|
|
};
|
2016-01-01 07:05:32 +00:00
|
|
|
}
|
|
|
|
|
2016-04-23 09:52:37 +00:00
|
|
|
impl_vector!(Vector2 { x, y }, 2, vec2);
|
|
|
|
impl_vector!(Vector3 { x, y, z }, 3, vec3);
|
|
|
|
impl_vector!(Vector4 { x, y, z, w }, 4, vec4);
|
2015-09-20 15:32:53 +00:00
|
|
|
|
2015-12-12 11:17:03 +00:00
|
|
|
impl_fixed_array_conversions!(Vector2<S> { x: 0, y: 1 }, 2);
|
|
|
|
impl_fixed_array_conversions!(Vector3<S> { x: 0, y: 1, z: 2 }, 3);
|
|
|
|
impl_fixed_array_conversions!(Vector4<S> { x: 0, y: 1, z: 2, w: 3 }, 4);
|
2015-09-20 15:32:53 +00:00
|
|
|
|
2015-12-12 11:17:03 +00:00
|
|
|
impl_tuple_conversions!(Vector2<S> { x, y }, (S, S));
|
|
|
|
impl_tuple_conversions!(Vector3<S> { x, y, z }, (S, S, S));
|
|
|
|
impl_tuple_conversions!(Vector4<S> { x, y, z, w }, (S, S, S, S));
|
2015-09-20 15:32:53 +00:00
|
|
|
|
2013-09-03 03:54:03 +00:00
|
|
|
/// Operations specific to numeric two-dimensional vectors.
|
2014-05-26 17:10:04 +00:00
|
|
|
impl<S: BaseNum> Vector2<S> {
|
2014-05-25 09:43:51 +00:00
|
|
|
/// A unit vector in the `x` direction.
|
2015-09-29 11:36:57 +00:00
|
|
|
#[inline]
|
|
|
|
pub fn unit_x() -> Vector2<S> {
|
|
|
|
Vector2::new(S::one(), S::zero())
|
|
|
|
}
|
|
|
|
|
2014-05-25 09:43:51 +00:00
|
|
|
/// A unit vector in the `y` direction.
|
2015-09-29 11:36:57 +00:00
|
|
|
#[inline]
|
|
|
|
pub fn unit_y() -> Vector2<S> {
|
|
|
|
Vector2::new(S::zero(), S::one())
|
|
|
|
}
|
2014-01-23 16:13:53 +00:00
|
|
|
|
2013-09-03 03:54:03 +00:00
|
|
|
/// The perpendicular dot product of the vector and `other`.
|
|
|
|
#[inline]
|
2015-11-09 09:12:04 +00:00
|
|
|
pub fn perp_dot(self, other: Vector2<S>) -> S {
|
2013-09-03 03:54:03 +00:00
|
|
|
(self.x * other.y) - (self.y * other.x)
|
|
|
|
}
|
2014-01-23 16:13:53 +00:00
|
|
|
|
2014-05-25 09:43:51 +00:00
|
|
|
/// Create a `Vector3`, using the `x` and `y` values from this vector, and the
|
|
|
|
/// provided `z`.
|
2014-01-23 16:13:53 +00:00
|
|
|
#[inline]
|
2015-11-09 09:12:04 +00:00
|
|
|
pub fn extend(self, z: S)-> Vector3<S> {
|
2014-07-29 18:06:31 +00:00
|
|
|
Vector3::new(self.x, self.y, z)
|
2014-01-23 16:13:53 +00:00
|
|
|
}
|
2013-09-03 03:54:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Operations specific to numeric three-dimensional vectors.
|
2014-05-26 17:10:04 +00:00
|
|
|
impl<S: BaseNum> Vector3<S> {
|
2014-05-25 09:43:51 +00:00
|
|
|
/// A unit vector in the `x` direction.
|
2015-09-29 11:36:57 +00:00
|
|
|
#[inline]
|
|
|
|
pub fn unit_x() -> Vector3<S> {
|
|
|
|
Vector3::new(S::one(), S::zero(), S::zero())
|
|
|
|
}
|
|
|
|
|
2014-05-25 09:43:51 +00:00
|
|
|
/// A unit vector in the `y` direction.
|
2015-09-29 11:36:57 +00:00
|
|
|
#[inline]
|
|
|
|
pub fn unit_y() -> Vector3<S> {
|
|
|
|
Vector3::new(S::zero(), S::one(), S::zero())
|
|
|
|
}
|
|
|
|
|
2014-05-25 09:43:51 +00:00
|
|
|
/// A unit vector in the `w` direction.
|
2015-09-29 11:36:57 +00:00
|
|
|
#[inline]
|
|
|
|
pub fn unit_z() -> Vector3<S> {
|
|
|
|
Vector3::new(S::zero(), S::zero(), S::one())
|
|
|
|
}
|
2014-01-23 16:13:53 +00:00
|
|
|
|
2013-09-03 03:54:03 +00:00
|
|
|
/// Returns the cross product of the vector and `other`.
|
|
|
|
#[inline]
|
2015-02-22 21:33:16 +00:00
|
|
|
#[must_use]
|
2015-11-09 09:12:04 +00:00
|
|
|
pub fn cross(self, other: Vector3<S>) -> Vector3<S> {
|
2014-04-14 01:30:24 +00:00
|
|
|
Vector3::new((self.y * other.z) - (self.z * other.y),
|
2014-07-29 18:06:31 +00:00
|
|
|
(self.z * other.x) - (self.x * other.z),
|
|
|
|
(self.x * other.y) - (self.y * other.x))
|
2013-09-03 03:54:03 +00:00
|
|
|
}
|
2013-09-06 02:32:07 +00:00
|
|
|
|
2014-05-25 09:43:51 +00:00
|
|
|
/// Create a `Vector4`, using the `x`, `y` and `z` values from this vector, and the
|
|
|
|
/// provided `w`.
|
2014-01-23 16:13:53 +00:00
|
|
|
#[inline]
|
2015-11-09 09:12:04 +00:00
|
|
|
pub fn extend(self, w: S)-> Vector4<S> {
|
2014-07-29 18:06:31 +00:00
|
|
|
Vector4::new(self.x, self.y, self.z, w)
|
2014-01-23 16:13:53 +00:00
|
|
|
}
|
|
|
|
|
2014-05-25 09:43:51 +00:00
|
|
|
/// Create a `Vector2`, dropping the `z` value.
|
2014-01-23 16:13:53 +00:00
|
|
|
#[inline]
|
2015-11-09 09:12:04 +00:00
|
|
|
pub fn truncate(self)-> Vector2<S> {
|
2014-07-29 18:06:31 +00:00
|
|
|
Vector2::new(self.x, self.y)
|
2014-01-23 16:13:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Operations specific to numeric four-dimensional vectors.
|
2014-05-26 17:10:04 +00:00
|
|
|
impl<S: BaseNum> Vector4<S> {
|
2014-05-25 09:43:51 +00:00
|
|
|
/// A unit vector in the `x` direction.
|
2015-09-29 11:36:57 +00:00
|
|
|
#[inline]
|
|
|
|
pub fn unit_x() -> Vector4<S> {
|
|
|
|
Vector4::new(S::one(), S::zero(), S::zero(), S::zero())
|
|
|
|
}
|
|
|
|
|
2014-05-25 09:43:51 +00:00
|
|
|
/// A unit vector in the `y` direction.
|
2015-09-29 11:36:57 +00:00
|
|
|
#[inline]
|
|
|
|
pub fn unit_y() -> Vector4<S> {
|
|
|
|
Vector4::new(S::zero(), S::one(), S::zero(), S::zero())
|
|
|
|
}
|
|
|
|
|
2014-05-25 09:43:51 +00:00
|
|
|
/// A unit vector in the `z` direction.
|
2015-09-29 11:36:57 +00:00
|
|
|
#[inline]
|
|
|
|
pub fn unit_z() -> Vector4<S> {
|
|
|
|
Vector4::new(S::zero(), S::zero(), S::one(), S::zero())
|
|
|
|
}
|
|
|
|
|
2014-05-25 09:43:51 +00:00
|
|
|
/// A unit vector in the `w` direction.
|
2015-09-29 11:36:57 +00:00
|
|
|
#[inline]
|
|
|
|
pub fn unit_w() -> Vector4<S> {
|
|
|
|
Vector4::new(S::zero(), S::zero(), S::zero(), S::one())
|
|
|
|
}
|
2014-01-23 16:13:53 +00:00
|
|
|
|
2014-05-25 09:43:51 +00:00
|
|
|
/// Create a `Vector3`, dropping the `w` value.
|
2014-01-23 16:13:53 +00:00
|
|
|
#[inline]
|
2015-11-09 09:12:04 +00:00
|
|
|
pub fn truncate(self)-> Vector3<S> {
|
2014-07-29 18:06:31 +00:00
|
|
|
Vector3::new(self.x, self.y, self.z)
|
2014-01-23 16:13:53 +00:00
|
|
|
}
|
2014-06-05 07:58:09 +00:00
|
|
|
|
|
|
|
/// Create a `Vector3`, dropping the nth element
|
|
|
|
#[inline]
|
2015-01-09 23:16:39 +00:00
|
|
|
pub fn truncate_n(&self, n: isize)-> Vector3<S> {
|
2014-06-05 07:58:09 +00:00
|
|
|
match n {
|
2014-07-29 18:06:31 +00:00
|
|
|
0 => Vector3::new(self.y, self.z, self.w),
|
|
|
|
1 => Vector3::new(self.x, self.z, self.w),
|
|
|
|
2 => Vector3::new(self.x, self.y, self.w),
|
|
|
|
3 => Vector3::new(self.x, self.y, self.z),
|
2015-01-09 22:06:45 +00:00
|
|
|
_ => panic!("{:?} is out of range", n)
|
2014-06-05 07:58:09 +00:00
|
|
|
}
|
|
|
|
}
|
2013-09-03 03:54:03 +00:00
|
|
|
}
|
|
|
|
|
2016-04-04 09:45:54 +00:00
|
|
|
/// Dot product of two vectors.
|
|
|
|
#[inline]
|
2016-04-07 22:46:35 +00:00
|
|
|
pub fn dot<V: InnerSpace>(a: V, b: V) -> V::Scalar where
|
2016-04-04 09:45:54 +00:00
|
|
|
V::Scalar: BaseFloat,
|
|
|
|
{
|
|
|
|
V::dot(a, b)
|
|
|
|
}
|
|
|
|
|
2016-04-07 22:46:35 +00:00
|
|
|
impl<S: BaseFloat> InnerSpace for Vector2<S> {
|
2016-04-04 09:45:54 +00:00
|
|
|
#[inline]
|
|
|
|
fn dot(self, other: Vector2<S>) -> S {
|
|
|
|
Vector2::mul_element_wise(self, other).sum()
|
|
|
|
}
|
|
|
|
|
2013-09-03 03:54:03 +00:00
|
|
|
#[inline]
|
2015-11-09 09:12:04 +00:00
|
|
|
fn angle(self, other: Vector2<S>) -> Rad<S> {
|
2016-03-27 05:25:03 +00:00
|
|
|
Rad::atan2(Self::perp_dot(self, other), Self::dot(self, other))
|
2013-09-03 03:54:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-07 22:46:35 +00:00
|
|
|
impl<S: BaseFloat> InnerSpace for Vector3<S> {
|
2016-04-04 09:45:54 +00:00
|
|
|
#[inline]
|
|
|
|
fn dot(self, other: Vector3<S>) -> S {
|
|
|
|
Vector3::mul_element_wise(self, other).sum()
|
|
|
|
}
|
|
|
|
|
2013-09-03 03:54:03 +00:00
|
|
|
#[inline]
|
2015-11-09 09:12:04 +00:00
|
|
|
fn angle(self, other: Vector3<S>) -> Rad<S> {
|
2016-03-27 05:25:03 +00:00
|
|
|
Rad::atan2(self.cross(other).magnitude(), Self::dot(self, other))
|
2013-09-03 03:54:03 +00:00
|
|
|
}
|
|
|
|
}
|
2013-09-03 07:33:33 +00:00
|
|
|
|
2016-04-07 22:46:35 +00:00
|
|
|
impl<S: BaseFloat> InnerSpace for Vector4<S> {
|
2016-04-04 09:45:54 +00:00
|
|
|
#[inline]
|
|
|
|
fn dot(self, other: Vector4<S>) -> S {
|
|
|
|
Vector4::mul_element_wise(self, other).sum()
|
|
|
|
}
|
2013-09-06 06:39:15 +00:00
|
|
|
}
|
|
|
|
|
2015-12-29 10:50:43 +00:00
|
|
|
impl<S: fmt::Debug> fmt::Debug for Vector2<S> {
|
2014-02-25 08:56:22 +00:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
2015-12-29 10:50:43 +00:00
|
|
|
try!(write!(f, "Vector2 "));
|
|
|
|
<[S; 2] as fmt::Debug>::fmt(self.as_ref(), f)
|
2013-09-03 07:33:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-29 10:50:43 +00:00
|
|
|
impl<S: fmt::Debug> fmt::Debug for Vector3<S> {
|
2014-02-25 08:56:22 +00:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
2015-12-29 10:50:43 +00:00
|
|
|
try!(write!(f, "Vector3 "));
|
|
|
|
<[S; 3] as fmt::Debug>::fmt(self.as_ref(), f)
|
2013-09-03 07:33:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-29 10:50:43 +00:00
|
|
|
impl<S: fmt::Debug> fmt::Debug for Vector4<S> {
|
2014-02-25 08:56:22 +00:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
2015-12-29 10:50:43 +00:00
|
|
|
try!(write!(f, "Vector4 "));
|
|
|
|
<[S; 4] as fmt::Debug>::fmt(self.as_ref(), f)
|
2013-09-03 07:33:33 +00:00
|
|
|
}
|
|
|
|
}
|
2015-09-27 03:01:14 +00:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
mod vector2 {
|
|
|
|
use vector::*;
|
|
|
|
|
|
|
|
const VECTOR2: Vector2<i32> = Vector2 { x: 1, y: 2 };
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_index() {
|
|
|
|
assert_eq!(VECTOR2[0], VECTOR2.x);
|
|
|
|
assert_eq!(VECTOR2[1], VECTOR2.y);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_index_mut() {
|
|
|
|
let mut v = VECTOR2;
|
|
|
|
*&mut v[0] = 0;
|
|
|
|
assert_eq!(v, [0, 2].into());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[should_panic]
|
|
|
|
fn test_index_out_of_bounds() {
|
|
|
|
VECTOR2[2];
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_index_range() {
|
|
|
|
assert_eq!(&VECTOR2[..0], &[]);
|
|
|
|
assert_eq!(&VECTOR2[..1], &[1]);
|
|
|
|
assert_eq!(VECTOR2[..0].len(), 0);
|
|
|
|
assert_eq!(VECTOR2[..1].len(), 1);
|
|
|
|
assert_eq!(&VECTOR2[2..], &[]);
|
|
|
|
assert_eq!(&VECTOR2[1..], &[2]);
|
|
|
|
assert_eq!(VECTOR2[2..].len(), 0);
|
|
|
|
assert_eq!(VECTOR2[1..].len(), 1);
|
|
|
|
assert_eq!(&VECTOR2[..], &[1, 2]);
|
|
|
|
assert_eq!(VECTOR2[..].len(), 2);
|
|
|
|
}
|
2015-09-27 07:20:02 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_into() {
|
|
|
|
let v = VECTOR2;
|
|
|
|
{
|
|
|
|
let v: [i32; 2] = v.into();
|
|
|
|
assert_eq!(v, [1, 2]);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
let v: (i32, i32) = v.into();
|
|
|
|
assert_eq!(v, (1, 2));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_as_ref() {
|
|
|
|
let v = VECTOR2;
|
|
|
|
{
|
|
|
|
let v: &[i32; 2] = v.as_ref();
|
|
|
|
assert_eq!(v, &[1, 2]);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
let v: &(i32, i32) = v.as_ref();
|
|
|
|
assert_eq!(v, &(1, 2));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_as_mut() {
|
|
|
|
let mut v = VECTOR2;
|
|
|
|
{
|
|
|
|
let v: &mut [i32; 2] = v.as_mut();
|
|
|
|
assert_eq!(v, &mut [1, 2]);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
let v: &mut (i32, i32) = v.as_mut();
|
|
|
|
assert_eq!(v, &mut (1, 2));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_from() {
|
|
|
|
assert_eq!(Vector2::from([1, 2]), VECTOR2);
|
|
|
|
{
|
|
|
|
let v = &[1, 2];
|
|
|
|
let v: &Vector2<_> = From::from(v);
|
|
|
|
assert_eq!(v, &VECTOR2);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
let v = &mut [1, 2];
|
|
|
|
let v: &mut Vector2<_> = From::from(v);
|
|
|
|
assert_eq!(v, &VECTOR2);
|
|
|
|
}
|
|
|
|
assert_eq!(Vector2::from((1, 2)), VECTOR2);
|
|
|
|
{
|
|
|
|
let v = &(1, 2);
|
|
|
|
let v: &Vector2<_> = From::from(v);
|
|
|
|
assert_eq!(v, &VECTOR2);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
let v = &mut (1, 2);
|
|
|
|
let v: &mut Vector2<_> = From::from(v);
|
|
|
|
assert_eq!(v, &VECTOR2);
|
|
|
|
}
|
|
|
|
}
|
2015-09-27 03:01:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
mod vector3 {
|
|
|
|
use vector::*;
|
|
|
|
|
|
|
|
const VECTOR3: Vector3<i32> = Vector3 { x: 1, y: 2, z: 3 };
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_index() {
|
|
|
|
assert_eq!(VECTOR3[0], VECTOR3.x);
|
|
|
|
assert_eq!(VECTOR3[1], VECTOR3.y);
|
|
|
|
assert_eq!(VECTOR3[2], VECTOR3.z);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_index_mut() {
|
|
|
|
let mut v = VECTOR3;
|
|
|
|
*&mut v[1] = 0;
|
|
|
|
assert_eq!(v, [1, 0, 3].into());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[should_panic]
|
|
|
|
fn test_index_out_of_bounds() {
|
|
|
|
VECTOR3[3];
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_index_range() {
|
|
|
|
assert_eq!(&VECTOR3[..1], &[1]);
|
|
|
|
assert_eq!(&VECTOR3[..2], &[1, 2]);
|
|
|
|
assert_eq!(VECTOR3[..1].len(), 1);
|
|
|
|
assert_eq!(VECTOR3[..2].len(), 2);
|
|
|
|
assert_eq!(&VECTOR3[2..], &[3]);
|
|
|
|
assert_eq!(&VECTOR3[1..], &[2, 3]);
|
|
|
|
assert_eq!(VECTOR3[2..].len(), 1);
|
|
|
|
assert_eq!(VECTOR3[1..].len(), 2);
|
|
|
|
assert_eq!(&VECTOR3[..], &[1, 2, 3]);
|
|
|
|
assert_eq!(VECTOR3[..].len(), 3);
|
|
|
|
}
|
2015-09-27 07:20:02 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_into() {
|
|
|
|
let v = VECTOR3;
|
|
|
|
{
|
|
|
|
let v: [i32; 3] = v.into();
|
|
|
|
assert_eq!(v, [1, 2, 3]);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
let v: (i32, i32, i32) = v.into();
|
|
|
|
assert_eq!(v, (1, 2, 3));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_as_ref() {
|
|
|
|
let v = VECTOR3;
|
|
|
|
{
|
|
|
|
let v: &[i32; 3] = v.as_ref();
|
|
|
|
assert_eq!(v, &[1, 2, 3]);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
let v: &(i32, i32, i32) = v.as_ref();
|
|
|
|
assert_eq!(v, &(1, 2, 3));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_as_mut() {
|
|
|
|
let mut v = VECTOR3;
|
|
|
|
{
|
|
|
|
let v: &mut [i32; 3] = v.as_mut();
|
|
|
|
assert_eq!(v, &mut [1, 2, 3]);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
let v: &mut (i32, i32, i32) = v.as_mut();
|
|
|
|
assert_eq!(v, &mut (1, 2, 3));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_from() {
|
|
|
|
assert_eq!(Vector3::from([1, 2, 3]), VECTOR3);
|
|
|
|
{
|
|
|
|
let v = &[1, 2, 3];
|
|
|
|
let v: &Vector3<_> = From::from(v);
|
|
|
|
assert_eq!(v, &VECTOR3);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
let v = &mut [1, 2, 3];
|
|
|
|
let v: &mut Vector3<_> = From::from(v);
|
|
|
|
assert_eq!(v, &VECTOR3);
|
|
|
|
}
|
|
|
|
assert_eq!(Vector3::from((1, 2, 3)), VECTOR3);
|
|
|
|
{
|
|
|
|
let v = &(1, 2, 3);
|
|
|
|
let v: &Vector3<_> = From::from(v);
|
|
|
|
assert_eq!(v, &VECTOR3);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
let v = &mut (1, 2, 3);
|
|
|
|
let v: &mut Vector3<_> = From::from(v);
|
|
|
|
assert_eq!(v, &VECTOR3);
|
|
|
|
}
|
|
|
|
}
|
2015-09-27 03:01:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
mod vector4 {
|
|
|
|
use vector::*;
|
|
|
|
|
|
|
|
const VECTOR4: Vector4<i32> = Vector4 { x: 1, y: 2, z: 3, w: 4 };
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_index() {
|
|
|
|
assert_eq!(VECTOR4[0], VECTOR4.x);
|
|
|
|
assert_eq!(VECTOR4[1], VECTOR4.y);
|
|
|
|
assert_eq!(VECTOR4[2], VECTOR4.z);
|
|
|
|
assert_eq!(VECTOR4[3], VECTOR4.w);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_index_mut() {
|
|
|
|
let mut v = VECTOR4;
|
|
|
|
*&mut v[2] = 0;
|
|
|
|
assert_eq!(v, [1, 2, 0, 4].into());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[should_panic]
|
|
|
|
fn test_index_out_of_bounds() {
|
|
|
|
VECTOR4[4];
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_index_range() {
|
|
|
|
assert_eq!(&VECTOR4[..2], &[1, 2]);
|
|
|
|
assert_eq!(&VECTOR4[..3], &[1, 2, 3]);
|
|
|
|
assert_eq!(VECTOR4[..2].len(), 2);
|
|
|
|
assert_eq!(VECTOR4[..3].len(), 3);
|
|
|
|
assert_eq!(&VECTOR4[2..], &[3, 4]);
|
|
|
|
assert_eq!(&VECTOR4[1..], &[2, 3, 4]);
|
|
|
|
assert_eq!(VECTOR4[2..].len(), 2);
|
|
|
|
assert_eq!(VECTOR4[1..].len(), 3);
|
|
|
|
assert_eq!(&VECTOR4[..], &[1, 2, 3, 4]);
|
|
|
|
assert_eq!(VECTOR4[..].len(), 4);
|
|
|
|
}
|
2015-09-27 07:20:02 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_into() {
|
|
|
|
let v = VECTOR4;
|
|
|
|
{
|
|
|
|
let v: [i32; 4] = v.into();
|
|
|
|
assert_eq!(v, [1, 2, 3, 4]);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
let v: (i32, i32, i32, i32) = v.into();
|
|
|
|
assert_eq!(v, (1, 2, 3, 4));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_as_ref() {
|
|
|
|
let v = VECTOR4;
|
|
|
|
{
|
|
|
|
let v: &[i32; 4] = v.as_ref();
|
|
|
|
assert_eq!(v, &[1, 2, 3, 4]);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
let v: &(i32, i32, i32, i32) = v.as_ref();
|
|
|
|
assert_eq!(v, &(1, 2, 3, 4));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_as_mut() {
|
|
|
|
let mut v = VECTOR4;
|
|
|
|
{
|
|
|
|
let v: &mut[i32; 4] = v.as_mut();
|
|
|
|
assert_eq!(v, &mut [1, 2, 3, 4]);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
let v: &mut(i32, i32, i32, i32) = v.as_mut();
|
|
|
|
assert_eq!(v, &mut (1, 2, 3, 4));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_from() {
|
|
|
|
assert_eq!(Vector4::from([1, 2, 3, 4]), VECTOR4);
|
|
|
|
{
|
|
|
|
let v = &[1, 2, 3, 4];
|
|
|
|
let v: &Vector4<_> = From::from(v);
|
|
|
|
assert_eq!(v, &VECTOR4);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
let v = &mut [1, 2, 3, 4];
|
|
|
|
let v: &mut Vector4<_> = From::from(v);
|
|
|
|
assert_eq!(v, &VECTOR4);
|
|
|
|
}
|
|
|
|
assert_eq!(Vector4::from((1, 2, 3, 4)), VECTOR4);
|
|
|
|
{
|
|
|
|
let v = &(1, 2, 3, 4);
|
|
|
|
let v: &Vector4<_> = From::from(v);
|
|
|
|
assert_eq!(v, &VECTOR4);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
let v = &mut (1, 2, 3, 4);
|
|
|
|
let v: &mut Vector4<_> = From::from(v);
|
|
|
|
assert_eq!(v, &VECTOR4);
|
|
|
|
}
|
|
|
|
}
|
2015-09-27 03:01:14 +00:00
|
|
|
}
|
|
|
|
}
|