add ModelBatch.translate(...), .rotate(...), .scale(...)

This commit is contained in:
MihailRis
2024-06-21 20:55:14 +03:00
parent 8e26ead76c
commit a9640fff36
3 changed files with 25 additions and 6 deletions
+12
View File
@@ -116,6 +116,18 @@ static glm::mat4 extract_rotation(glm::mat4 matrix) {
return glm::toMat3(rotation);
}
void ModelBatch::translate(glm::vec3 vec) {
pushMatrix(glm::translate(glm::mat4(1.0f), vec));
}
void ModelBatch::rotate(glm::vec3 axis, float angle) {
pushMatrix(glm::rotate(glm::mat4(1.0f), angle, axis));
}
void ModelBatch::scale(glm::vec3 vec) {
pushMatrix(glm::scale(glm::mat4(1.0f), vec));
}
void ModelBatch::pushMatrix(glm::mat4 matrix) {
matrices.push_back(combined);
combined = combined * matrix;