Lines Matching defs:MTX43
80 struct MTX43 : public MTX43_ struct
87 static const MTX43& Identity() in Identity() argument
97 typedef MTX43 self_type; //!< 自分の型です。 argument
106 MTX43() {} in MTX43() argument
109 MTX43(const f32* p) { (void)MTX43Copy(this, (MTX43*)p); } in MTX43() function
112 MTX43(f32 x00, f32 x01, f32 x02, in MTX43() argument
134 VEC3& GetRow(int index) in GetRow()
141 const VEC3& GetRow(int index) const in GetRow()
148 VEC4 GetColumn(int index) const in GetColumn()
175 self_type& operator += (const self_type& rhs) { return *MTX43Add(this, this, &rhs); } argument
191 …self_type operator + (const self_type& rhs) const { MTX43 tmp; return *MTX43Add(&tmp, this, &rhs);… argument
192 …self_type operator - (const self_type& rhs) const { MTX43 tmp; return *MTX43Add(&tmp, this, &rhs);… argument
194 self_type operator * (f32 f) const { MTX43 tmp; return *MTX43Mult(&tmp, this, f); } argument
204 self_type& SetupIdentity() { return *MTX43Identity(this); } in SetupIdentity() argument
219 bool IsIdentity() const { return MTX43IsIdentity(this); } in IsIdentity() argument