segunda-feira, 23 de novembro de 2015

Método da Integração em Jogos

Legal este link, explica como cálculo integral é usado em jogos

Integration Basics
http://gafferongames.com/game-physics/integration-basics/


Ainda sobre integrais, gostei doresumo sobre calculo no Livro The Computational Beauty of Nature


sábado, 7 de novembro de 2015

Some important ANSI escape codes

Do artigo Write Your Own conio.h for GNU/Linux



Escape code Use
\x1b[2J Clears the console
\x1bn;mH or \x1bn;mf Moves the cursor to row n, column m. The values are 1-based, and default to 1 (top left corner) if omitted
\x1b?25l Hides the cursor (Note: the last character is lowercase ‘L’)
\x1b?25h Shows the cursor.
\x1b[;km Where k is the colour (text colours are from 30 to 37 and background colours are from 40 to 47). For the colour codes, see Table 2.
\x1b[5m Blinks slowly
\x1b[6m Blinks rapidly