This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @file bounce.cpp | |
* @brief OpenGL animation of a bouncing ball inside a transparent cube | |
* @author @faustinoaq | |
* | |
* This program creates a 3D animation using OpenGL and GLFW showing a red sphere | |
* bouncing inside a transparent cube with colored faces. The animation includes: | |
* - A rotating view of the scene | |
* - Sphere-cube collision detection and response | |
* - Transparent cube faces with colored edges |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Migrate the old UIUCPlus to the new UIUCPlus, ensuring it is properly formatted and compilable. | |
# Cleanup | |
rm -rf FormattedUIUCPlus NewUIUCPlus | |
# Clone updated repos | |
git clone https://github.com/sugamadhiakri/UIUCPlus FormattedUIUCPlus | |
git clone https://github.com/summer-research-program/UIUCPlus NewUIUCPlus |
OlderNewer