Yuriy Kozlov's Raytracer

0.2

Introduction

This program implements a raytracer.

Compilation

Ubuntu

Required packages: build-essential, libqt4-dev There should already be a make file. Compile by typing: make The binary will be at bin/raytracer

RHEL5

Required packages: gcc-c++, qt4-devel

There should already be a make file. Compile by typing:

make -f Makefile_bp

The binary will be at bin/raytracer

If there is no make file:

cd src

/usr/lib/qt4/bin/qmake -unix -o Makefile_bp src.pro

cd ..

/usr/lib/qt4/bin/qmake -unix -o Makefile_bp raytracer.pro

make -f Makefile_bp

MS Windows

Download and install Qt4 with mingw, open source version for windows from Trolltech's website.

Go into the qt4/mingw command line. There should already be a make file. Compile by typing:

make -f Makefile_win

The binary will be at src/bin/raytracer.exe

If there is no make file:

cd src

qmake -win -o Makefile_win src.pro

cd ..

/usr/lib/qt4/bin/qmake -win -o Makefile_win raytracer.pro

make -f Makefile_win

Screenshots

There are screenshots and summaries for them in the screenshots/ directory.
Generated on Thu Dec 13 02:06:34 2007 for raytracer by  doxygen 1.5.3