Lines Matching refs:this
147 MTX33(const f32* p) { MTX33Copy(this, reinterpret_cast<const MTX33*>(p)); } in MTX33()
149 MTX33(const MTX34& rhs) { MTX34ToMTX33(this, &rhs); } in MTX33()
166 operator f32*() { return this->a; }
168 operator const f32*() const { return this->a; }
174 return *reinterpret_cast<VEC3*>(&this->v[index]); in GetRow()
181 return *reinterpret_cast<const VEC3*>(&this->v[index]); in GetRow()
189 column.x = this->m[0][index]; in GetColumn()
190 column.y = this->m[1][index]; in GetColumn()
191 column.z = this->m[2][index]; in GetColumn()
199 this->m[0][index] = column.x; in SetColumn()
200 this->m[1][index] = column.y; in SetColumn()
201 this->m[2][index] = column.z; in SetColumn()
210 self_type& SetupIdentity() { return *MTX33Identity(this); } in SetupIdentity()
219 …bool operator == (const self_type& rhs) const { return ::std::memcmp(this, &rhs, sizeof(MTX33)) ==…
222 …bool operator != (const self_type& rhs) const { return ::std::memcmp(this, &rhs, sizeof(MTX33)) !=…
225 bool IsIdentity() const { return MTX33IsIdentity(this); } in IsIdentity()