Graphics

Advanced Math Function Plotter, 2D Function Plotter in C++ (METPRO), using graphics.h BGI library

Draw Windows with WinBGI The METPRO program is an example of the use of windows.h. What it does is to…

Read More »
Math and others

Numerical Methods for Finding Roots of a Function in C++

Is solved using the following numerical method algorithms, coded in C++ language: Bisection False position Secant method Newton-Raphson Fixed point…

Read More »
Math and others

Numerical Methods for Solving Ordinary Equations – ODEs in C++

An ordinary differential equation – ODE, is solved using the following numerical method algorithms, coded in C++ language: Euler Modified…

Read More »
Math and others

Numerical Integration in C++

Is solved using the following numerical method algorithms, coded in C++ language: Trapezoidal Rule Simpson’s Rule Developed by: JOSE LUIS…

Read More »
Math and others

Matrix Numerical Methods for Solving Systems of Linear Equations in C++

A system of equations is solved using the following algorithms in numerical methods, coded in C++ language: Gauss method –…

Read More »
Graphics

Example of using the mouse in C++ WinBGI graphical mode (Mouse BGI), using graphics.h BGI library

Utility that allows to see the mouse cursor in bgi mode either in 16 colors or 256 colors, also uses…

Read More »
Graphics

Calculate and plot the Fourier series of a function in C++, using graphics.h BGI library

It transforms a periodic function f(t), to its respective Fourier series (The same function but represented in an infinite sum…

Read More »
Fractals

Mandelbrot fractal explorer in C++ (DMandel), using graphics.h BGI library

At the request of several friends, I upload this program that diagrams the Mandelbrot set, using a short, simple and…

Read More »
Graphics

Draw Electric Potential in C++, using graphics.h BGI library

It plots the distribution of potentials between two parallel plates atdifferent potentials, like a capacitor. Using a recursive algorithminstead of…

Read More »
Graphics

How to Draw a PCX image in C++ (PCXBGI), using graphics.h BGI library

LOAD A PCX ON SCREEN using the WinBGIDLL library. Advantages: 5 resolution modes: 320×200, 640×400, 640×480, 800×600 and 1024×768. Works…

Read More »
Back to top button