gfxmath-vec3 0.1.1

A simple 3D math library
Documentation
use crate::Vec3;
use core::ops::MulAssign;

/// ```
/// use gfxmath_vec3::Vec3;
/// 
/// let mut a = Vec3::<f32>::new(1.5, 2.5, -2.0);
/// let b = Vec3::<f32>::new(4.0, 2.0,  4.0);
/// a *= b;
/// 
/// assert_eq!( 6.0, a.x);
/// assert_eq!( 5.0, a.y);
/// assert_eq!(-8.0, a.z);
/// 
/// ```
#[opimps::impl_ops_assign(MulAssign)]
#[inline]
fn mul_assign<T>(self: Vec3<T>, rhs: Vec3<T>) where T: MulAssign<T> + Copy {
    let l = self.as_mut_slice();
    let r = rhs.as_slice();

    l[0] *= r[0];
    l[1] *= r[1];
    l[2] *= r[2];
}

/// ```
/// use gfxmath_vec3::Vec3;
/// 
/// let mut a = Vec3::<f32>::new(1.5, 2.5, -2.0);
/// a *= 2.0;
/// 
/// assert_eq!( 3.0, a.x);
/// assert_eq!( 5.0, a.y);
/// assert_eq!(-4.0, a.z);
/// 
/// ```
#[opimps::impl_op_assign(MulAssign)]
#[inline]
fn mul_assign<T>(self: Vec3<T>, rhs: T) where T: MulAssign<T> + Copy {
    let l = self.as_mut_slice();

    l[0] *= rhs;
    l[1] *= rhs;
    l[2] *= rhs;
}