Bug 1082483, part 3 - Remove the temporary Matrix4x4::Translate/Scale methods. r=Bas

This commit is contained in:
Jonathan Watt 2014-10-16 10:51:13 +01:00
parent f440265515
commit 6a3ab8569c

View File

@ -567,10 +567,6 @@ public:
return *this;
}
Matrix4x4 &Translate(Float aX, Float aY, Float aZ)
{
return PreTranslate(aX, aY, aZ);
}
/**
* Similar to PreTranslate, but the translation is applied -after- this
@ -627,10 +623,6 @@ public:
return *this;
}
Matrix4x4 &Scale(Float aX, Float aY, Float aZ)
{
return PreScale(aX, aY, aZ);
}
/**
* Similar to PostTranslate, but applies a scale instead of a translation.