Advanced Videogames

Snakes game in C++, using graphics.h BGI library

Snakes – Along the routes of Peru STORY Two snakes named Venoro and Vercari, try to escape from the hunger…

Read More »
Fractals

The Koch Curve in C++, using graphics.h BGI library

Diagram of the Koch curve: “Starting from a segment which is divided into three equal parts. The central part is…

Read More »
Math and others

Example of overloading the + operator in C++(Chain Concatenation)

Cstring class that supports string concatenation, ie, that joins the contents of 2 strings and adds them to another target…

Read More »
Math and others

Prime Number Detector in C++

Program that determines if an entered number is a prime number. Programa que determina si un número ingresado es un…

Read More »
Graphics

Triangle in C++, using graphics.h BGI library

Plots a triangle in a 3D system on the screen rotating around the axe Z. Its initial coordinates are read…

Read More »
Graphics

How to Draw a Bitmap BMP in C++ (BMPPlus), using graphics.h BGI library

Similar to PCXPlus but graphics bitmaps (BMP) using low-level drawing routines in 320×200 and 640×480 resolutions with 256 colors. Developed…

Read More »
Math and others

Example of object-oriented programming in C++ (Bouncing Balls)

A simple example of OOP (Object Oriented Programming), in which like some balls bouncing on the limits of our screen…

Read More »
VideoGames

Ping Pong game in C++, using graphics.h BGI library

Classic Ping Pong game with scores and increased ball speed. The game is given to FT5 (the player who first…

Read More »
Graphics

How to Draw a Bitmap BMP and PCX in C++ (IMGBGI), using graphics.h BGI library

After such a long time without updating PCXBGI, I decided to do something more productive, like a universal image loader,…

Read More »
Fractals

Bezier Surface in C++ Visual Sudio

Draw a Bezier surface Developed by: Original authors: Amelia Improvements added from version 2, thanks to Yacsha. JOSE LUIS DE…

Read More »
Back to top button