MCPcopy Create free account
hub / github.com/RozDavid/UnScene3D / add

Method add

utils/cuda_utils/include/cuda_SimpleMatrixUtil.h:445–449  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

443
444 //! computes the sum of two matrices (result stored in this)
445 inline __device__ __host__ void add(const float3x3 &other) {
446 m11 += other.m11; m12 += other.m12; m13 += other.m13;
447 m21 += other.m21; m22 += other.m22; m23 += other.m23;
448 m31 += other.m31; m32 += other.m32; m33 += other.m33;
449 }
450
451 //! standard matrix matrix multiplication
452 inline __device__ __host__ float3x3 operator*(const float3x3 &other) const {

Callers 2

separate_segmentsFunction · 0.45
splitMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected