Lines Matching refs:this
188 explicit MTX33(const f32* p) { MTX33Copy(this, reinterpret_cast<const MTX33*>(p)); } in MTX33()
190 explicit MTX33(const MTX34& rhs) { MTX34ToMTX33(this, &rhs); } in MTX33()
207 operator f32*() { return this->a; }
209 operator const f32*() const { return this->a; }
215 return *reinterpret_cast<VEC3*>(&this->v[index]); in GetRow()
222 return *reinterpret_cast<const VEC3*>(&this->v[index]); in GetRow()
230 column.x = this->m[0][index]; in GetColumn()
231 column.y = this->m[1][index]; in GetColumn()
232 column.z = this->m[2][index]; in GetColumn()
240 this->m[0][index] = column.x; in SetColumn()
241 this->m[1][index] = column.y; in SetColumn()
242 this->m[2][index] = column.z; in SetColumn()
251 self_type& SetupIdentity() { return *MTX33Identity(this); } in SetupIdentity()
260 …bool operator == (const self_type& rhs) const { return ::std::memcmp(this, &rhs, sizeof(MTX33)) ==…
263 …bool operator != (const self_type& rhs) const { return ::std::memcmp(this, &rhs, sizeof(MTX33)) !=…
266 bool IsIdentity() const { return MTX33IsIdentity(this); } in IsIdentity()