{"id":18978835,"url":"https://github.com/michalgallovic/computer-graphics","last_synced_at":"2026-05-07T08:34:57.613Z","repository":{"id":85181947,"uuid":"197927849","full_name":"MichalGallovic/Computer-Graphics","owner":"MichalGallovic","description":"🎮 Fractals, Bezier curve, Image processing and Physics","archived":false,"fork":false,"pushed_at":"2019-07-21T12:30:10.000Z","size":41839,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-06-02T16:40:05.015Z","etag":null,"topics":["computer-graphics","cpp","docker","glm","glut","opengl"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MichalGallovic.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-07-20T12:33:18.000Z","updated_at":"2024-06-11T14:55:49.000Z","dependencies_parsed_at":null,"dependency_job_id":"53fdbb0b-3fef-4c22-8901-10979561b5e1","html_url":"https://github.com/MichalGallovic/Computer-Graphics","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MichalGallovic/Computer-Graphics","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MichalGallovic%2FComputer-Graphics","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MichalGallovic%2FComputer-Graphics/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MichalGallovic%2FComputer-Graphics/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MichalGallovic%2FComputer-Graphics/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MichalGallovic","download_url":"https://codeload.github.com/MichalGallovic/Computer-Graphics/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MichalGallovic%2FComputer-Graphics/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32729676,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-07T02:14:30.463Z","status":"ssl_error","status_checked_at":"2026-05-07T02:14:29.405Z","response_time":62,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["computer-graphics","cpp","docker","glm","glut","opengl"],"created_at":"2024-11-08T15:39:57.352Z","updated_at":"2026-05-07T08:34:57.570Z","avatar_url":"https://github.com/MichalGallovic.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"### Computer graphics\n\nCode from computer graphics course I've taken during my university studies. It includes basic opengl commands, image processing using convolutional filters, drawing bezier curves and my final project - game with physics, rigid bodies and collision detection.\n\nCode was written in C++ using OpenGL/GLM and GLUT libraries.\n\nFor more information checkout README files of each subproject.\n\n#### Build and run\n\nInstructions on how to build and run each repository can be found in each folder.\n\n#### Preview project using Docker\n\nYou can also preview the project using Docker:\n\n```\n# Change directory to the root of the project\n\ncd Computer-Graphics\n\n# Build docker image\ndocker build -t cg/preview:0.1.0 .\n\n# Run docker image\ndocker run --rm -d -p 6080:80 -p 5900:5900 -e RESOLUTION=1920x1080 cg/preview:0.1.0\n\n# Stop docker iamges\ndocker stop \u003ccontainer_id\u003e\n```\n\nWhen docker is running, you can interact with Ubuntu and run projects using browser on `localhost:6080` or through VNC software on `localhost:5900`. All projects are pre-built on `Desktop`.\n\n#### Bounce unlimited\n\n3D Platform game Bounce Unlimited 💯\n\n\u003cp align=\"center\"\u003e\u003cimg src=\"https://raw.githubusercontent.com/MichalGallovic/Computer-Graphics/master/bounce_unlimited/assets/preview.gif\"\u003e\u003c/p\u003e\n\nCurrently there is segmentation fault issue in this project and I did not have time to fix it. Though when built on mac without docker it works.\n\n#### Image processing\n\nBased on the Image of [Chichen Itza pyramid](https://en.wikipedia.org/wiki/Chichen_Itza) program tries to reconstruct its 3D image. \n\n\u003cp align=\"center\"\u003e\u003cimg src=\"https://raw.githubusercontent.com/MichalGallovic/Computer-Graphics/master/image_processing/assets/preview.png\"\u003e\u003c/p\u003e\n\n#### Bezier curve\n\nDraws bezier curve and redraws shape when new points are added or existing points moved. Uses [Casteljau's algorithm](https://en.wikipedia.org/wiki/De_Casteljau%27s_algorithm).\n\n\u003cp align=\"center\"\u003e\u003cimg src=\"https://raw.githubusercontent.com/MichalGallovic/Computer-Graphics/master/bezier_curve/assets/preview.gif\"\u003e\u003c/p\u003e\n\n#### Ball in cube \u0026 Fractals\n\nBasic OpenGL drawing with camera movement and fractals drawn on the inner walls of cube.\n\n\u003cp align=\"center\"\u003e\u003cimg src=\"https://raw.githubusercontent.com/MichalGallovic/Computer-Graphics/master/ball_in_a_cube/assets/preview.gif\"\u003e\u003c/p\u003e","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichalgallovic%2Fcomputer-graphics","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmichalgallovic%2Fcomputer-graphics","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichalgallovic%2Fcomputer-graphics/lists"}