MCPcopy Create free account
hub / github.com/PerroEngine/Perro / add_f32

Method add_f32

perro_source/core/perro_structs/src/structs/matrix/mod.rs:1240–1244  ·  view source on GitHub ↗
(self, rhs: Self)

Source from the content-addressed store, hash-verified

1238
1239 #[inline]
1240 pub fn add_f32(self, rhs: Self) -> Self {
1241 let mut out = self;
1242 out.add_assign_f32(rhs);
1243 out
1244 }
1245
1246 #[inline]
1247 pub fn add_assign_f32(&mut self, rhs: Self) -> &mut Self {

Callers 2

bench_matrix4_bulk_opsFunction · 0.80
add_fastMethod · 0.80

Calls 1

add_assign_f32Method · 0.80

Tested by

no test coverage detected