Lines Matching refs:this
104 MTX23(const f32* p) { (void)MTX23Copy(this, reinterpret_cast<const MTX23*>(p)); } in MTX23()
106 MTX23(const MTX22& rhs) { MTX22ToMTX23(this, &rhs); } in MTX23()
122 operator f32*() { return this->a; }
125 operator const f32*() const { return this->a; }
131 return *reinterpret_cast<VEC3*>(&this->v[index]); in GetRow()
138 return *reinterpret_cast<const VEC3*>(&this->v[index]); in GetRow()
146 column.x = this->m[0][index]; in GetColumn()
147 column.y = this->m[1][index]; in GetColumn()
155 this->m[0][index] = column.x; in SetColumn()
156 this->m[1][index] = column.y; in SetColumn()
165 self_type& SetupIdentity() { return *MTX23Identity(this); } in SetupIdentity()
173 self_type& operator += (const self_type& rhs) { return *MTX23Add(this, this, &rhs); }
174 self_type& operator -= (const self_type& rhs) { return *MTX23Sub(this, this, &rhs); }
176 self_type& operator *= (f32 f) { return *MTX23Mult(this, this, f); }
179 self_type operator + () const { return *this; }
186 …self_type operator + (const self_type& rhs) const { MTX23 tmp; return *MTX23Add(&tmp, this, &rhs);…
187 …self_type operator - (const self_type& rhs) const { MTX23 tmp; return *MTX23Sub(&tmp, this, &rhs);…
189 self_type operator * (f32 f) const { MTX23 tmp; return *MTX23Mult(&tmp, this, f); }
190 self_type operator / (f32 f) const { return *this * (1.f / f); }
205 return *MTX23Scale(this, &matrix, &scale); in SetupScale()
215 return *MTX23Translate(this, &matrix, &translate); in SetupTranslate()
224 return *MTX23RotFIdx(this, NN_MATH_RAD_TO_FIDX(rotate)); in SetupRotate()
235 return *MTX23RotCenterFIdx(this, ¢er, NN_MATH_RAD_TO_FIDX(rotate)); in SetupRotate()
245 …bool operator == (const self_type& rhs) const { return ::std::memcmp(this, &rhs, sizeof(MTX23)) ==…
248 …bool operator != (const self_type& rhs) const { return ::std::memcmp(this, &rhs, sizeof(MTX23)) !=…
251 bool IsIdentity() const { return MTX23IsIdentity(this); } in IsIdentity()