PATRIA Engine – Collision detection

I recently implemented in my new 3D engine, called PATRIA (developed for my development team http://teamnovasoft.com) a new collision system based on Collision spheres.   I decided to use the sphere system in place of the more costly AABB system in order to have a simple and perfomant collision system and not introduce any additional overhead […]

The challenging programming

 Today I have been facing new challenges in the PATRIA engine development. I am migrating all the PATRIA core functions from the OpenGL obsolete immediate mode to the most advanced Vertex Array and Vertex Buffer Object. Useless to say that the theory took me a while before I started the implementation, I was excited and […]

Root access on Ubuntu

By default on Ubuntu systems the root account is disabled. To run commands on console as root you have to use the sudo command in order to have root privileges on the required operation. For instance, you can edit the X11 configuration file using root credentials with the following command: sudo gedit X11/xorg.conf Sometimes, you […]

mmm troubles using GTK+ on UBUNTU 8.04

mmmm ok guys, I started to use the GTK+ libraries to develop a C application on my GNOME platform running on UBUNTU 8.0.4. I have started the installation process. As you know, it is composed of 3 different steps. The first one, the creation of the Makefile: ./configure and….up until here everything was ok. The […]