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 »

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 »

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 »

Plotting Mathematical Functions, 2d function plotter in C++ (Graf XY), using graphics.h BGI library

Plots points of a two-dimensional function (y = f(x)) on the screen, in the specified region of the Cartesian plane.…

Read More »

Musical Keyboard in C++, using graphics.h BGI library

A musical keyboard is simulated using the computer keyboard. Most important features: The keyboard is drawn on the screen, using…

Read More »

Sheet Music Player in C++, using graphics.h BGI library

Allows you to read a score from a txt file with the format of the QBASIC play function, and then…

Read More »

Plot Conics, Circle, Parabola, Ellipse, Hyperbola (Conics) in C++, using graphics.h BGI library

Program that graphs conics in their general form ( AX^2+ BXY+CY^2+DX+EY+F = 0), that is to say parabolas, ellipses, hyperbolas,…

Read More »

Plotting Mathematical Functions, 3d function plotter in C++(Graf 3D) Example 3, using graphics.h BGI library

3D FUNCTION PLOTTER Rotates a 3D surface z=f(x,y) randomly around each of the three axes (X,Y,Z), modeling this function as…

Read More »

Plotting Mathematical Functions, 3d function plotter in C++(Graf 3D) Example 2, using graphics.h BGI library

3D FUNCTION PLOTTER Rotates a 3D surface z=f(x,y) randomly around each of the three axes (X,Y,Z), modeling this function as…

Read More »

Plotting Mathematical Functions, 3d function plotter in C++(Graf 3D) Example 1, using graphics.h BGI library

3D FUNCTION PLOTTER Rotates a 3D surface z=f(x,y) randomly around each of the three axes (X,Y,Z), modeling this function as…

Read More »
Back to top button