Create a rectangle that:
- Gradually changes color from red → white with time
- Magnifies (scales) in X and Y direction with time
- Rotates in the XY plane with time
This project is implemented using OpenGL 3.3 Core, GLFW, and GLAD.
Use the MSYS2 UCRT64 terminal and install the needed packages:
Makefile:
CXX := g++ TARGET := app.exe
CXXFLAGS := -O2 -Wall -std=c++17
all: $(TARGET)
main.o: main.cpp
run:
clean: rm -f *.o $(TARGET)