Este sitio web funciona mejor con JavaScript.
Inicio
Ayuda
Iniciar sesión
lolengine
/
lol
réplica de
https://github.com/lolengine/lol
Seguir
1
Destacar
0
Fork
0
Código
Incidencias
0
Lanzamientos
0
Wiki
Actividad
Explorar el Código
Proper Float3 constructors.
legacy
Sam Hocevar
sam
hace 14 años
padre
0fdf9b6874
commit
6223c37bb2
Se han
modificado 1 ficheros
con
3 adiciones
y
0 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+3
-0
src/matrix.h
+ 3
- 0
src/matrix.h
Ver fichero
@@ -21,6 +21,9 @@ struct Float2
struct Float3
{
Float3() { x = y = z = 0.0f; }
Float3(float _x, float _y, float _z) { x = _x; y = _y; z = _z; }
float x, y, z;
};
Escribir
Vista previa
Cargando…
Cancelar
Guardar