Home
last modified time | relevance | path

Searched defs:DVec2 (Results 1 – 20 of 20) sorted by relevance

/aosp_15_r20/external/rust/android-crates-io/crates/glam/src/f64/
Ddvec2.rs13 pub const fn dvec2(x: f64, y: f64) -> DVec2 { in dvec2()
22 pub struct DVec2 { struct
27 impl DVec2 { implementation
809 impl Default for DVec2 { implementation
816 impl Div<DVec2> for DVec2 { implementation
827 impl DivAssign<DVec2> for DVec2 { implementation
835 impl Div<f64> for DVec2 { implementation
846 impl DivAssign<f64> for DVec2 { implementation
857 fn div(self, rhs: DVec2) -> DVec2 { in div()
865 impl Mul<DVec2> for DVec2 { implementation
[all …]
Ddaffine2.rs41 pub const fn from_cols(x_axis: DVec2, y_axis: DVec2, z_axis: DVec2) -> Self { in from_cols()
181 pub fn from_scale_angle_translation(scale: DVec2, angle: f64, translation: DVec2) -> Self { in from_scale_angle_translation()
224 pub fn to_scale_angle_translation(self) -> (DVec2, f64, DVec2) { in to_scale_angle_translation()
244 pub fn transform_point2(&self, rhs: DVec2) -> DVec2 { in transform_point2()
253 pub fn transform_vector2(&self, rhs: DVec2) -> DVec2 { in transform_vector2()
Ddmat2.rs12 pub const fn dmat2(x_axis: DVec2, y_axis: DVec2) -> DMat2 { in dmat2()
48 pub const fn from_cols(x_axis: DVec2, y_axis: DVec2) -> Self { in from_cols()
98 pub fn from_scale_angle(scale: DVec2, angle: f64) -> Self { in from_scale_angle()
149 pub fn col(&self, index: usize) -> DVec2 { in col()
163 pub fn col_mut(&mut self, index: usize) -> &mut DVec2 { in col_mut()
178 pub fn row(&self, index: usize) -> DVec2 { in row()
244 pub fn mul_vec2(&self, rhs: DVec2) -> DVec2 { in mul_vec2()
Ddmat3.rs297 pub fn from_scale_angle_translation(scale: DVec2, angle: f64, translation: DVec2) -> Self { in from_scale_angle_translation()
478 pub fn transform_point2(&self, rhs: DVec2) -> DVec2 { in transform_point2()
494 pub fn transform_vector2(&self, rhs: DVec2) -> DVec2 { in transform_vector2()
Ddvec4.rs1307 fn from((v, z, w): (DVec2, f64, f64)) -> Self { in from()
1314 fn from((v, u): (DVec2, DVec2)) -> Self { in from()
Ddvec3.rs163 pub fn truncate(self) -> DVec2 { in truncate()
1295 fn from((v, z): (DVec2, f64)) -> Self { in from()
Ddquat.rs334 pub fn from_rotation_arc_2d(from: DVec2, to: DVec2) -> Self { in from_rotation_arc_2d()
/aosp_15_r20/external/rust/android-crates-io/crates/glam/src/swizzles/
Ddvec3_impl.rs12 fn xx(self) -> DVec2 { in xx()
21 fn xy(self) -> DVec2 { in xy()
30 fn xz(self) -> DVec2 { in xz()
39 fn yx(self) -> DVec2 { in yx()
48 fn yy(self) -> DVec2 { in yy()
57 fn yz(self) -> DVec2 { in yz()
66 fn zx(self) -> DVec2 { in zx()
75 fn zy(self) -> DVec2 { in zy()
84 fn zz(self) -> DVec2 { in zz()
Ddvec2_impl.rs5 impl Vec2Swizzles for DVec2 { implementation
12 fn xx(self) -> DVec2 { in xx()
21 fn xy(self) -> DVec2 { in xy()
30 fn yx(self) -> DVec2 { in yx()
39 fn yy(self) -> DVec2 { in yy()
Ddvec4_impl.rs12 fn xx(self) -> DVec2 { in xx()
21 fn xy(self) -> DVec2 { in xy()
30 fn xz(self) -> DVec2 { in xz()
39 fn xw(self) -> DVec2 { in xw()
48 fn yx(self) -> DVec2 { in yx()
57 fn yy(self) -> DVec2 { in yy()
66 fn yz(self) -> DVec2 { in yz()
75 fn yw(self) -> DVec2 { in yw()
84 fn zx(self) -> DVec2 { in zx()
93 fn zy(self) -> DVec2 { in zy()
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/glam/src/features/
Dimpl_bytemuck.rs51 unsafe impl Pod for DVec2 {} implementation
52 unsafe impl Zeroable for DVec2 {} implementation
/aosp_15_r20/external/deqp/framework/common/
H A DtcuVectorType.hpp74 typedef Vector<double, 2> DVec2; typedef
/aosp_15_r20/external/rust/android-crates-io/crates/glam/tests/
Dsupport.rs250 impl FloatCompare for DVec2 { implementation
/aosp_15_r20/external/rust/android-crates-io/crates/glam/src/f32/
Dvec2.rs762 pub fn as_dvec2(&self) -> crate::DVec2 { in as_dvec2()
/aosp_15_r20/external/rust/android-crates-io/crates/glam/src/i64/
Di64vec2.rs380 pub fn as_dvec2(&self) -> crate::DVec2 { in as_dvec2()
/aosp_15_r20/external/rust/android-crates-io/crates/glam/src/i16/
Di16vec2.rs380 pub fn as_dvec2(&self) -> crate::DVec2 { in as_dvec2()
/aosp_15_r20/external/rust/android-crates-io/crates/glam/src/u64/
Du64vec2.rs275 pub fn as_dvec2(&self) -> crate::DVec2 { in as_dvec2()
/aosp_15_r20/external/rust/android-crates-io/crates/glam/src/u16/
Du16vec2.rs275 pub fn as_dvec2(&self) -> crate::DVec2 { in as_dvec2()
/aosp_15_r20/external/rust/android-crates-io/crates/glam/src/i32/
Divec2.rs380 pub fn as_dvec2(&self) -> crate::DVec2 { in as_dvec2()
/aosp_15_r20/external/rust/android-crates-io/crates/glam/src/u32/
Duvec2.rs275 pub fn as_dvec2(&self) -> crate::DVec2 { in as_dvec2()