Инструмент масштабирования

This commit is contained in:
2023-04-04 17:04:40 +03:00
committed by re.kovalev
parent e2706b13af
commit 7465e08a48
3 changed files with 64 additions and 1 deletions

View File

@@ -3,6 +3,7 @@
#define T_SENSITIVITY 0.001f
#define R_SENSITIVITY 0.01f
#define S_SENSITIVITY 0.00001f
#include "Scene.h"
@@ -33,4 +34,12 @@ class Rotate : public TRS
virtual void process(GLuint64 selectedID, GLuint etc, const glm::vec4& drot); // Взаимодействие с инструментом
};
// Инструмент масштабирования
class Scale : public TRS
{
public:
Scale();
virtual void process(GLuint64 selectedID, GLuint etc, const glm::vec4& dscale); // Взаимодействие с инструментом
};
#endif // TRS_H