Este site funciona melhor com JavaScript.
Página inicial
Ajuda
Acessar
lolengine
/
lol
espelhamento de
https://github.com/lolengine/lol
Observar
1
Favorito
0
Fork
0
Código
Issues
0
Versões
0
Wiki
Atividade
Ver código fonte
Proper Float3 constructors.
legacy
Sam Hocevar
sam
14 anos atrás
pai
0fdf9b6874
commit
6223c37bb2
1 arquivos alterados
com
3 adições
e
0 exclusões
Visão dividida
Opções de diferenças
Mostrar estatísticas
Baixar arquivo de patch
Baixar arquivo de diferenças
+3
-0
src/matrix.h
+ 3
- 0
src/matrix.h
Ver arquivo
@@ -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;
};
Escrever
Pré-visualização
Carregando…
Cancelar
Salvar