Skip to content

Latest commit

 

History

History
27 lines (23 loc) · 1.05 KB

README.md

File metadata and controls

27 lines (23 loc) · 1.05 KB

cg_playground

A project where I can play around with computer graphics a little bit. My idea is to implement a series of small projects inside this one as I slowly progress through computer graphics topics.

Tiny renderer

I'm implementing my own version of this great tutorial, the idea is to implement a renderer step-by-step: implement line drawing, then .obj parsing, then wireframe rendering and so on. Here's a video with my progress so far:

Trying it out

This project uses Miniconda as a package manager and conda devenv. After installing Miniconda you need to install conda-devenv on your base (root environment) with:

conda activate base 
conda install conda-devenv
conda deactivate

Then in order to create the environment run

conda devenv

on the root of this project.