Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 543 Bytes

README.md

File metadata and controls

15 lines (12 loc) · 543 Bytes

MATLAB Ray Tracer

Sample Image

What is this?

MATLAB Ray Tracer is a ray tracing software. This software is developed based on Ray Tracing in One Weekend.

How to use?

Run "run.m".

Notes

This software uses Parallel Computing Toolbox and Statistics and Machine Learning Toolbox. If you don't have these toolboxes, rewrite "run.m" as follows:

  • parfor -> for
  • hs = haltonset(...); hs = scramble(...); -> hs = rand(2*px(1), px(2));