• Home
  • Raw
  • Download

Lines Matching defs:DVec4

16 pub const fn dvec4(x: f64, y: f64, z: f64, w: f64) -> DVec4 {  in dvec4()
25 pub struct DVec4 { struct
32 impl DVec4 { argument
714 impl Default for DVec4 { implementation
721 impl Div<DVec4> for DVec4 { implementation
734 impl DivAssign<DVec4> for DVec4 { implementation
744 impl Div<f64> for DVec4 { implementation
757 impl DivAssign<f64> for DVec4 { implementation
770 fn div(self, rhs: DVec4) -> DVec4 { in div()
780 impl Mul<DVec4> for DVec4 { implementation
793 impl MulAssign<DVec4> for DVec4 { implementation
803 impl Mul<f64> for DVec4 { implementation
816 impl MulAssign<f64> for DVec4 { implementation
829 fn mul(self, rhs: DVec4) -> DVec4 { in mul()
839 impl Add<DVec4> for DVec4 { implementation
852 impl AddAssign<DVec4> for DVec4 { implementation
862 impl Add<f64> for DVec4 { implementation
875 impl AddAssign<f64> for DVec4 { implementation
888 fn add(self, rhs: DVec4) -> DVec4 { in add()
898 impl Sub<DVec4> for DVec4 { implementation
911 impl SubAssign<DVec4> for DVec4 { implementation
913 fn sub_assign(&mut self, rhs: DVec4) { in sub_assign()
921 impl Sub<f64> for DVec4 { implementation
934 impl SubAssign<f64> for DVec4 { implementation
947 fn sub(self, rhs: DVec4) -> DVec4 { in sub()
957 impl Rem<DVec4> for DVec4 { implementation
970 impl RemAssign<DVec4> for DVec4 { implementation
980 impl Rem<f64> for DVec4 { implementation
993 impl RemAssign<f64> for DVec4 { implementation
1006 fn rem(self, rhs: DVec4) -> DVec4 { in rem()
1017 impl AsRef<[f64; 4]> for DVec4 { implementation
1020 unsafe { &*(self as *const DVec4 as *const [f64; 4]) } constant
1025 impl AsMut<[f64; 4]> for DVec4 { implementation
1032 impl Sum for DVec4 { implementation
1042 impl<'a> Sum<&'a Self> for DVec4 { implementation
1052 impl Product for DVec4 { implementation
1062 impl<'a> Product<&'a Self> for DVec4 { implementation
1072 impl Neg for DVec4 { implementation
1085 impl Index<usize> for DVec4 { implementation
1099 impl IndexMut<usize> for DVec4 { implementation
1113 impl fmt::Display for DVec4 { implementation
1120 impl fmt::Debug for DVec4 { implementation
1131 impl From<[f64; 4]> for DVec4 { implementation
1145 impl From<(f64, f64, f64, f64)> for DVec4 { implementation
1159 impl From<(DVec3, f64)> for DVec4 { implementation
1166 impl From<(f64, DVec3)> for DVec4 { implementation
1173 impl From<(DVec2, f64, f64)> for DVec4 { implementation
1180 impl From<(DVec2, DVec2)> for DVec4 { implementation