mirror of https://github.com/AxioDL/zeus.git
add CMatrix3f::addScaledMatrix
This commit is contained in:
parent
286d098ecb
commit
f17f2371bf
|
@ -139,6 +139,14 @@ public:
|
||||||
|
|
||||||
inline void invert() {*this = inverted();}
|
inline void invert() {*this = inverted();}
|
||||||
CMatrix3f inverted() const;
|
CMatrix3f inverted() const;
|
||||||
|
|
||||||
|
void addScaledMatrix(const CMatrix3f& other, float scale)
|
||||||
|
{
|
||||||
|
CVector3f scaleVec(scale);
|
||||||
|
vec[0] += other.vec[0] * scaleVec;
|
||||||
|
vec[1] += other.vec[1] * scaleVec;
|
||||||
|
vec[2] += other.vec[2] * scaleVec;
|
||||||
|
}
|
||||||
|
|
||||||
union
|
union
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue