예제 #1
0
파일: mgmat.cpp 프로젝트: Vito2015/vgcore
Matrix2d Matrix2d::shearing(float sx, float sy, const Point2d& pnt)
{
    Matrix2d mat;
    mat.setToShearing(sx, sy, pnt);
    return mat;
}