예제 #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
파일: Mat4.cpp 프로젝트: 1005491398/Threes
void Mat4::rotateZ(float angle, Mat4* dst) const
{
    Mat4 r;
    createRotationZ(angle, &r);
    multiply(*this, r, dst);
}