In this tutorial I will show you how to create a pretty cool 3D Starfield simulation using Python and Pygame.
Tag Archives: python
3D Starfield made using Python and Pygame
Rotating 3D Cube using Python and Pygame
In one of my previous tutorials, I have shown how to make a simulation of a wireframe cube using Python and Pygame. Today, we will make a few modifications in the code from that tutorial to make an awesome rotating solid cube. See below the video of the rotating cube.
A Cool Parallax Starfield Simulation using Python
In one of my previous tutorials, I have demonstrated how to create a simple starfield simulation using Python and Pygame. Today, we will make a few modifications in the code from that tutorial to make a pretty cool parallax starfield.
Simple Starfield with Python and Pygame
In this tutorial we will create a simple but cool starfield simulation with Python and Pygame. The tutorial will be very brief and accompanied by a self-explanatory small amount of code.
Rotating 3D Wireframe Cube with Python
In the last tutorial we saw how to make a simple 3D simulation. In this tutorial we will build from the theory and code from the last tutorial and make a rotating 3D wireframe cube.
Simulation of 3D Point Rotation with Python and Pygame
In this tutorial I will show you how to build a simulation of 3D point rotation using Python and Pygame. I will begin by giving you a brief background on 3d computer graphics theory. It will help you understand the code that will be presented afterwards. I assume you have a basic knowledge of Pygame.
A Fast Introduction to Pygame
Pygame is a cross-platform game library written in Python. It is the most used library to write games using Python. This tutorial aims to get you started using the Pygame library. After finishing this tutorial you will be able to craft simple Pygame applications, and will be in position of understanding complex Pygame applications written by others.
Game Programming with Python and PyGame – Making Breakout
Python and Pygame are simple yet powerful tools that make up a great combination for rapid game development. This tutorial will guide you step by step in using these two tools to make the classic Breakout game.