コード例 #1
0
ファイル: example.cpp プロジェクト: yuduosheng/OpenGL_common
/// Implements the "zoomout" operation. Enlarges the view of the scene.
void zoomOut() {

	AMatrix<float> mT;
	mT.identity();
	mT.scaling(1.0 / 1.2);
	sceneT = mT*sceneT;
}