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

    Matrix r;
    createRotationZ(angle, &r);
    multiply(*this, r, dst);
}
示例#2
0
void Mat4::rotateZ(float angle, Mat4* dst) const
{
    Mat4 r;
    createRotationZ(angle, &r);
    multiply(*this, r, dst);
}