From bb038653d6eafb51b660bd50bfb91c4fae5a7f24 Mon Sep 17 00:00:00 2001 From: MihailRis Date: Wed, 25 Dec 2024 10:28:31 +0300 Subject: [PATCH] fix UVFace.rotate --- src/maths/UVFace.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/maths/UVFace.hpp b/src/maths/UVFace.hpp index 538ae210..8a0815bb 100644 --- a/src/maths/UVFace.hpp +++ b/src/maths/UVFace.hpp @@ -16,7 +16,7 @@ struct UVFace { } template - inline void rotate(int times) { + inline void rotate() { int times = n % 4; if (times < 0) { times += 4;