Home
last modified time | relevance | path

Searched refs:reject_from (Results 1 – 17 of 17) sorted by relevance

/external/rust/crates/glam/src/f32/coresimd/
Dvec4.rs434 pub fn reject_from(self, rhs: Self) -> Self { in reject_from() method
Dvec3a.rs460 pub fn reject_from(self, rhs: Self) -> Self { in reject_from() method
/external/rust/crates/glam/tests/
Dvec2.rs581 assert_eq!($new(1.0, 0.0), $new(1.0, 1.0).reject_from($new(0.0, 2.0)));
591 should_glam_assert!({ $vec2::ONE.reject_from($vec2::ZERO) });
Dvec3.rs642 $new(1.0, 0.0, 1.0).reject_from($new(0.0, 0.0, 2.0))
653 should_glam_assert!({ $vec3::ONE.reject_from($vec3::ZERO) });
Dvec4.rs724 $new(0.0, 1.0, 0.0, 1.0).reject_from($new(0.0, 0.0, 0.0, 2.0))
735 should_glam_assert!({ $vec4::ONE.reject_from($vec4::ZERO) });
/external/rust/crates/glam/src/f32/wasm32/
Dvec4.rs454 pub fn reject_from(self, rhs: Self) -> Self { in reject_from() method
Dvec3a.rs472 pub fn reject_from(self, rhs: Self) -> Self { in reject_from() method
/external/rust/crates/glam/src/f32/
Dvec2.rs430 pub fn reject_from(self, rhs: Self) -> Self { in reject_from() method
Dvec3.rs475 pub fn reject_from(self, rhs: Self) -> Self { in reject_from() method
/external/rust/crates/glam/src/f64/
Ddvec2.rs430 pub fn reject_from(self, rhs: Self) -> Self { in reject_from() method
Ddvec3.rs475 pub fn reject_from(self, rhs: Self) -> Self { in reject_from() method
Ddvec4.rs507 pub fn reject_from(self, rhs: Self) -> Self { in reject_from() method
/external/rust/crates/glam/src/f32/sse2/
Dvec4.rs472 pub fn reject_from(self, rhs: Self) -> Self { in reject_from() method
Dvec3a.rs497 pub fn reject_from(self, rhs: Self) -> Self { in reject_from() method
/external/rust/crates/glam/src/f32/scalar/
Dvec3a.rs481 pub fn reject_from(self, rhs: Self) -> Self { in reject_from() method
Dvec4.rs515 pub fn reject_from(self, rhs: Self) -> Self { in reject_from() method
/external/rust/crates/glam/
DCHANGELOG.md303 `project_onto_normalized()`, `reject_from()` and `reject_from_normalized()`.