IndexAboutWeblogRecipesProjectsLinksSearchRSS

Categories

ThadeusB python, ai, robots

Subversion to Mercurial Conversion Completed.

I have completed converting all of my subversion projects to mercurial repositories. I used Sam Hart's guide located here

Pygame Event Input Wrapper

The goal of this class is to make input easier, and globally accessible to the entire game for each loop. This also keeps track of whether an input has just been pressed, is being held down, and when it is released. Usage Wrapper for the pygame input m

Version Control Systems Compared - Subversion vs Mercurial vs Git vs Bazaar

### What I need in a version control system I am mainly interested in two things.* Managing source code (obviously)* File system backup You would expect the requirements for the two would be completely different,however when examinin

Rotate Sprite Towards Point

Smoothly turn a sprite towards a desired located based on a turning speed. Implemented in python for use with pygame, however the concepts can easily be taken to any other programming language. Class a_sprite()