rtrace 1.0.0

A pet raytracer to test overall pseudo-performance and multi-threading
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
G=6g
L=6l

all: cpptrace
.phony : image

clean:
	rm -f cpptrace out.tga

cpptrace: ray.cpp
	# Using g++ with -O3 bossts performance by 100% and more , go doesnt 
	# have that yet
	# g++ -O3 ray.cpp -o cpptrace
	g++ -O3 ray.cpp -o cpptrace

image : cpptrace
	time ./cpptrace > out.tga