Skip to content
forked from CGLAB-Classes/neon

Simple ray tracer for course assignment.

License

Notifications You must be signed in to change notification settings

yujin-hong/neon

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Neon

Neon is a minimal ray tracer written in C++. Originally, It was wrrtien for my own learning purpose. This is part of the ray tracer which can be used as base code for assignment in the Computer Graphics course at GIST.

Installation

git clone  https://github.com/CGLAB-Classes/neon-edu.git
cd neon
mkdir build
cd build
cmake ..              # this might take a while due to installation of external library
make -j4

Dependancies

  • lodepng, Very simple png read/write library
  • glm, Math library for OpenGL and GLSL shader
  • taskflow-cpp, Task-based parallelism library

System Requirements

To use Neon, you need a C++ compiler which supports C++17 and cmake.

  • C++ Compiler
    • GCC >= 7.3
    • Clang >= 6.0
    • Visual Studio Version >= 15.7
  • Cmake > 3.13

License

Neon is licensed under the MIT License

About

Simple ray tracer for course assignment.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 95.1%
  • CMake 4.9%