Пример #1
0
void Mat3::RotateZ(const float angle)
{
	Mat3 tmp;
	
	tmp.BuildRotateZ(angle);
	(*this) *= tmp;
}