示例#1
0
文件: Matrix.cpp 项目: cn00/MJ
void Matrix::translate(float x, float y, float z, Matrix* dst) const
{
    assert(dst);

    Matrix t;
    createTranslation(x, y, z, &t);
    multiply(*this, t, dst);
}
示例#2
0
void Mat4::translate(float x, float y, float z, Mat4* dst) const
{
    Mat4 t;
    createTranslation(x, y, z, &t);
    multiply(*this, t, dst);
}