This website works better with JavaScript
Inicio
Explorar
Ayuda
Registro
Iniciar sesión
samien
/
three.js
espejo de
https://github.com/mrdoob/three.js.git
Seguir
1
Destacar
0
Fork
0
Archivos
Incidencias
0
Wiki
Explorar el Código
Matrix3: Add missing return statement to setUvTransform().
Mugen87
hace 5 años
padre
8c7877fa08
commit
d78c5ae8fa
Se han
modificado 1 ficheros
con
2 adiciones
y
0 borrados
Dividir vista
Mostrar estadísticas de diff
2
0
src/math/Matrix3.js
+ 2
- 0
src/math/Matrix3.js
Ver fichero
@@ -239,6 +239,8 @@ class Matrix3 {
0, 0, 1
);
+ return this;
+
}
scale( sx, sy ) {