• Home
  • Raw
  • Download

Lines Matching defs:Vec4

16 pub const fn vec4(x: f32, y: f32, z: f32, w: f32) -> Vec4 {  in vec4()
31 pub struct Vec4 { struct
38 impl Vec4 { argument
722 impl Default for Vec4 { implementation
729 impl Div<Vec4> for Vec4 { implementation
742 impl DivAssign<Vec4> for Vec4 { implementation
752 impl Div<f32> for Vec4 { implementation
765 impl DivAssign<f32> for Vec4 { implementation
778 fn div(self, rhs: Vec4) -> Vec4 { in div()
788 impl Mul<Vec4> for Vec4 { implementation
801 impl MulAssign<Vec4> for Vec4 { implementation
811 impl Mul<f32> for Vec4 { implementation
824 impl MulAssign<f32> for Vec4 { implementation
837 fn mul(self, rhs: Vec4) -> Vec4 { in mul()
847 impl Add<Vec4> for Vec4 { implementation
860 impl AddAssign<Vec4> for Vec4 { implementation
870 impl Add<f32> for Vec4 { implementation
883 impl AddAssign<f32> for Vec4 { implementation
896 fn add(self, rhs: Vec4) -> Vec4 { in add()
906 impl Sub<Vec4> for Vec4 { implementation
919 impl SubAssign<Vec4> for Vec4 { implementation
921 fn sub_assign(&mut self, rhs: Vec4) { in sub_assign()
929 impl Sub<f32> for Vec4 { implementation
942 impl SubAssign<f32> for Vec4 { implementation
955 fn sub(self, rhs: Vec4) -> Vec4 { in sub()
965 impl Rem<Vec4> for Vec4 { implementation
978 impl RemAssign<Vec4> for Vec4 { implementation
988 impl Rem<f32> for Vec4 { implementation
1001 impl RemAssign<f32> for Vec4 { implementation
1014 fn rem(self, rhs: Vec4) -> Vec4 { in rem()
1025 impl AsRef<[f32; 4]> for Vec4 { implementation
1028 unsafe { &*(self as *const Vec4 as *const [f32; 4]) } constant
1033 impl AsMut<[f32; 4]> for Vec4 { implementation
1040 impl Sum for Vec4 { implementation
1050 impl<'a> Sum<&'a Self> for Vec4 { implementation
1060 impl Product for Vec4 { implementation
1070 impl<'a> Product<&'a Self> for Vec4 { implementation
1080 impl Neg for Vec4 { implementation
1093 impl Index<usize> for Vec4 { implementation
1107 impl IndexMut<usize> for Vec4 { implementation
1121 impl fmt::Display for Vec4 { implementation
1128 impl fmt::Debug for Vec4 { implementation
1139 impl From<[f32; 4]> for Vec4 { implementation
1153 impl From<(f32, f32, f32, f32)> for Vec4 { implementation
1167 impl From<(Vec3A, f32)> for Vec4 { implementation
1174 impl From<(f32, Vec3A)> for Vec4 { implementation
1181 impl From<(Vec3, f32)> for Vec4 { implementation
1188 impl From<(f32, Vec3)> for Vec4 { implementation
1195 impl From<(Vec2, f32, f32)> for Vec4 { implementation
1202 impl From<(Vec2, Vec2)> for Vec4 { implementation