| 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 { |
no outgoing calls
no test coverage detected