This calculator app is a simple project created to test the custom functions guiIntBox() and guiFloatBox() that i added to raygui.h. The app provides a basic graphical user interface that allows users to perform addition, subtraction, multiplication, and division operations.
This app can now be found in examples folder of raygui.h library.
- Addition: Enter two numbers and click the "+" button to get the result.
- Subtraction: Enter two numbers and click the "-" button to get the result.
- Multiplication: Enter two numbers and click the "*" button to get the result.
- Division: Enter two numbers (numerator and denominator) and click the "/" button to get the result.
- Clone this repo
git clone https://github.com/Z0RIK/calc.git- Create and enter build directory:
cd calc
mkdir build
cd build- Configure and build the project:
cmake -S ..
cmake --build .