Category Archives: code

RockScroll

RockScroll is a really useful plugin for every VisualStudio developer. The tool basically substitute the normal scrollbar from the VS IDE with an overview of the code itself. One of the feature I really consider useful is that if you … Continue reading

Posted in c++, code, programming | Tagged | Leave a comment

Historically significant papers for Computer Graphics

Thanks to one colleague of mine I found this great link full of historically significant papers for Computer Graphics! Enjoy it! — Grazie ad un mio collega ho trovato questo interessante link pieno di pubblicazioni storiche relative alla Computer Graphics. … Continue reading

Posted in book, code | Leave a comment

Sequence point

This is an interesting page about “Sequence point“. For example, what happens if we write the following code? int i=10; int n = i + i++; In this case we are both incrementing i and adding his own value. Well, … Continue reading

Posted in c++, code | Tagged | Leave a comment