This website works better with JavaScript
Strona główna
Odkrywaj
Pomoc
Zarejestruj się
Zaloguj się
samien
/
three.js
kopia lustrzana
https://github.com/mrdoob/three.js.git
Obserwuj
1
Polub
0
Forkuj
0
Pliki
Problemy
0
Wiki
Przeglądaj źródła
Matrix3: Add missing return statement to setUvTransform().
Mugen87
5 lat temu
rodzic
8c7877fa08
commit
d78c5ae8fa
1 zmienionych plików
z
2 dodań
i
0 usunięć
Widok podzielony
Pokaż statystyki zmian
2
0
src/math/Matrix3.js
+ 2
- 0
src/math/Matrix3.js
Wyświetl plik
@@ -239,6 +239,8 @@ class Matrix3 {
0, 0, 1
);
+ return this;
+
}
scale( sx, sy ) {