Lines Matching defs:f32
23 pub const fn vec3a(x: f32, y: f32, z: f32) -> Vec3A { in vec3a()
73 pub const fn new(x: f32, y: f32, z: f32) -> Self { in new()
121 pub fn write_to_slice(self, slice: &mut [f32]) { in write_to_slice()
151 pub fn dot(self, rhs: Self) -> f32 { in dot()
205 pub fn min_element(self) -> f32 { in min_element()
216 pub fn max_element(self) -> f32 { in max_element()
348 pub fn length(self) -> f32 { in length()
358 pub fn length_squared(self) -> f32 { in length_squared()
366 pub fn length_recip(self) -> f32 { in length_recip()
373 pub fn distance(self, rhs: Self) -> f32 { in distance()
379 pub fn distance_squared(self, rhs: Self) -> f32 { in distance_squared()
586 pub fn clamp_length(self, min: f32, max: f32) -> Self { in clamp_length()
638 pub fn angle_between(self, rhs: Self) -> f32 { in angle_between()
760 fn div_assign(&mut self, rhs: f32) { in div_assign()
765 impl Div<Vec3A> for f32 { implementation
798 fn mul_assign(&mut self, rhs: f32) { in mul_assign()
803 impl Mul<Vec3A> for f32 { implementation
836 fn add_assign(&mut self, rhs: f32) { in add_assign()
841 impl Add<Vec3A> for f32 { implementation
874 fn sub_assign(&mut self, rhs: f32) { in sub_assign()
879 impl Sub<Vec3A> for f32 { implementation
913 fn rem_assign(&mut self, rhs: f32) { in rem_assign()
918 impl Rem<Vec3A> for f32 { implementation
1054 impl From<Vec3A> for [f32; 3] { implementation
1063 fn from(t: (f32, f32, f32)) -> Self { in from()
1068 impl From<Vec3A> for (f32, f32, f32) { implementation