-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathREADME
38 lines (27 loc) · 925 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
pixelmachine
by SuperJer
www.superjer.com
Usage: [OPTION]... [SEED]
Render ray-traced 3D images generated randomly with seed number SEED.
option default description
-wNUM 800 Set image output width to NUM
-hNUM 600 Set image output height to NUM
-mNUM 2 Set multisampling level to NUM (level 2 recommended)
-tNUM 8 Parallelize with NUM threads
-pNUM 0 Simulate lighting with NUM million photons!
Build on Linux:
---------------
1. Make sure you have SDL-devel on your system
2. Run `make`
- this will create the executable `pixelmachine`
Build on Windows:
-----------------
1. Install MinGW <http://www.mingw.org/>
- make sure it comes with MinGW Make
2. Get SDL-devel for MinGW <http://www.libsdl.org/>
- copy the lib and include files into MinGW
3. Run `mingw32-make win`
- this will create the executable `pixelmachine.exe`
Build on Mac:
-------------
???