├── .gitignore ├── LICENSE.txt ├── README.md ├── docs ├── Four-Space_Visualization_of_4D_Objects.html └── index.html ├── images ├── fig411-small.jpg ├── fig48-small.jpg ├── fig54a-small.jpg └── fig54b-small.jpg ├── ray4 ├── CHANGELOG.md ├── CMakeLists.txt ├── README.md ├── craig │ ├── README.md │ ├── convert │ ├── craig.sh │ ├── display │ ├── mtvtorast │ ├── r4tomtv.c │ ├── run │ └── run2 ├── image4.md ├── inputs.r4 │ ├── HS1.R4 │ ├── HS2.R4 │ ├── HS3.R4 │ ├── HS4.R4 │ ├── HS5.R4 │ ├── HS6.R4 │ ├── HS7.R4 │ ├── HT1.R4 │ ├── HT2.R4 │ ├── HT3.R4 │ ├── blank.r4 │ ├── dots.r4 │ ├── dots3.r4 │ ├── dots4.r4 │ ├── dots_axes.r4 │ ├── format.r4 │ ├── hyper.r4 │ ├── scube.r4 │ ├── sphere.r4 │ ├── tcube.r4 │ └── wdots.r4 ├── ray4-c │ ├── CHANGELOG.md │ ├── CMakeLists.txt │ ├── README.md │ ├── ray4-c.md │ ├── results │ │ ├── dots.2.icube │ │ ├── dots.icube │ │ ├── dots_axes.0.icube │ │ ├── ht1.icube │ │ ├── ht2.icube │ │ └── ht3.icube │ └── src │ │ ├── amiga.h │ │ ├── lmkfile │ │ ├── make.nt │ │ ├── makefile │ │ ├── makefile-amiga │ │ ├── r4_hit.c │ │ ├── r4_image.h │ │ ├── r4_io.c │ │ ├── r4_main.c │ │ ├── r4_parse.c │ │ ├── r4_trace.c │ │ ├── r4_vec.c │ │ ├── r4_vector.h │ │ ├── r4toiff.c │ │ ├── r4tosgi.c │ │ ├── ray4.h │ │ ├── v4cross.c │ │ ├── v4normalize.c │ │ └── write_ilbm.c ├── ray4-image-format.md ├── ray4.md ├── results │ ├── dots.2.icube │ ├── dots.icube │ ├── dots_axes.0.icube │ ├── ht1.icube │ ├── ht2.icube │ └── ht3.icube └── src │ ├── image4.cpp │ ├── r4_color.cpp │ ├── r4_color.h │ ├── r4_hit.cpp │ ├── r4_image.h │ ├── r4_io.cpp │ ├── r4_main.cpp │ ├── r4_parse.cpp │ ├── r4_point.cpp │ ├── r4_point.h │ ├── r4_ray.cpp │ ├── r4_ray.h │ ├── r4_test.cpp │ ├── r4_trace.cpp │ ├── r4_vector.cpp │ ├── r4_vector.h │ └── ray4.h ├── thesis ├── PostScript │ ├── README.md │ ├── abstract.ps │ ├── body.ps │ ├── figures │ │ ├── README.md │ │ ├── fig31,32.ps │ │ ├── fig33.ps │ │ ├── fig34.ps │ │ ├── fig41.ps │ │ ├── fig42.ps │ │ ├── fig43.ps │ │ ├── fig44.ps │ │ ├── fig45a.ps │ │ ├── fig45b.ps │ │ ├── fig45c.ps │ │ ├── fig45d.ps │ │ ├── fig46a.ps │ │ ├── fig46b.ps │ │ ├── fig46c.ps │ │ ├── fig46d.ps │ │ ├── fig47a.ps │ │ ├── fig47b.ps │ │ ├── fig51.ps │ │ ├── fig52.ps │ │ ├── fig53.ps │ │ └── refract.ps │ ├── lof.ps │ ├── title.ps │ └── toc.ps ├── README.md ├── html │ ├── README.md │ ├── abstract.html │ ├── ack.html │ ├── appendix_a.html │ ├── chapter1.html │ ├── chapter2.html │ ├── chapter3.html │ ├── chapter4.html │ ├── chapter5.html │ ├── chapter6.html │ ├── images │ │ ├── FIG31.GIF │ │ ├── FIG32.GIF │ │ ├── FIG33.GIF │ │ ├── FIG34.GIF │ │ ├── FIG41.GIF │ │ ├── FIG42.GIF │ │ ├── FIG43.GIF │ │ ├── FIG44.GIF │ │ ├── FIG45A.GIF │ │ ├── FIG45B.GIF │ │ ├── FIG45C.GIF │ │ ├── FIG45D.GIF │ │ ├── FIG46A.GIF │ │ ├── FIG46B.GIF │ │ ├── FIG46C.GIF │ │ ├── FIG46D.GIF │ │ ├── FIG47A.GIF │ │ ├── FIG47B.GIF │ │ ├── FIG49.JPG │ │ ├── FIG51.GIF │ │ ├── FIG52.GIF │ │ ├── FIG53.GIF │ │ ├── FIG54A.JPG │ │ ├── FIG54B.JPG │ │ ├── FIG55.JPG │ │ ├── FIG56.JPG │ │ ├── Fig410.JPG │ │ ├── Fig411.JPG │ │ ├── Fig412.JPG │ │ ├── Fig413.JPG │ │ ├── Fig414.JPG │ │ ├── Fig415.JPG │ │ └── Fig48.JPG │ ├── index.html │ ├── lof.html │ ├── ref.html │ └── thesis.css ├── images │ ├── FIG31.png │ ├── FIG32.png │ ├── FIG33.png │ ├── FIG34.png │ ├── FIG41.png │ ├── FIG410.png │ ├── FIG44.png │ ├── FIG45A.png │ ├── FIG45B.png │ ├── FIG45C.png │ ├── FIG54A.png │ ├── FIG54B.png │ ├── FIG55.png │ ├── FIG56.png │ ├── Fig411.png │ ├── Fig412.png │ ├── Fig413.png │ ├── Fig414.png │ ├── Fig415.png │ ├── Fig48.png │ └── fig42.png └── troff │ ├── 4dv.macros │ ├── README.md │ ├── abstract │ ├── abstract.view │ ├── appendix │ ├── ascii.sh │ ├── body.view │ ├── chapter1 │ ├── chapter2 │ ├── chapter3 │ ├── chapter4 │ ├── chapter5 │ ├── chapter6 │ ├── lof.macros │ ├── lof.view │ ├── makefile │ ├── manifest │ ├── pageinfo │ ├── references │ ├── thesis.macros │ ├── title │ ├── title.view │ ├── toc.macros │ └── toc.view └── wire4 ├── README.md ├── inputs ├── axes.w4 ├── basis.w4 ├── c.w4 ├── cube.w4 ├── cube3d.w4 ├── curve1.w4 ├── curve2.w4 ├── curve3.w4 ├── dual.w4 ├── figs │ ├── 4.10.w4 │ ├── 4.11.w4 │ ├── 4.12.w4 │ ├── 4.13.w4 │ ├── 4.14.w4 │ ├── 4.15.w4 │ ├── 4.5a.ps │ ├── 4.5a.w4 │ ├── 4.5b.ps │ ├── 4.5b.w4 │ ├── 4.5c.ps │ ├── 4.5c.w4 │ ├── 4.5d.ps │ ├── 4.5d.w4 │ ├── 4.6a.ps │ ├── 4.6a.w4 │ ├── 4.6b.ps │ ├── 4.6b.w4 │ ├── 4.6c.ps │ ├── 4.6c.w4 │ ├── 4.6d.ps │ ├── 4.6d.w4 │ ├── 4.7a.ps │ ├── 4.7a.snap │ ├── 4.7b.ps │ ├── 4.7b.snap │ ├── 4.8.w4 │ └── 4.9.w4 └── frustum.w4 ├── makefile ├── psplot.c ├── psplot.md ├── strcmpic.c ├── v3cross.c ├── v4cross.c ├── vector.h ├── w4_display.c ├── w4_geometry.c ├── w4_main.c ├── w4_parse.c ├── wire4.h └── wire4.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Git Ignore -- ray4 2 | 3 | build/ 4 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/README.md -------------------------------------------------------------------------------- /docs/Four-Space_Visualization_of_4D_Objects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/docs/Four-Space_Visualization_of_4D_Objects.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/docs/index.html -------------------------------------------------------------------------------- /images/fig411-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/images/fig411-small.jpg -------------------------------------------------------------------------------- /images/fig48-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/images/fig48-small.jpg -------------------------------------------------------------------------------- /images/fig54a-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/images/fig54a-small.jpg -------------------------------------------------------------------------------- /images/fig54b-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/images/fig54b-small.jpg -------------------------------------------------------------------------------- /ray4/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/CHANGELOG.md -------------------------------------------------------------------------------- /ray4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/CMakeLists.txt -------------------------------------------------------------------------------- /ray4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/README.md -------------------------------------------------------------------------------- /ray4/craig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/craig/README.md -------------------------------------------------------------------------------- /ray4/craig/convert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/craig/convert -------------------------------------------------------------------------------- /ray4/craig/craig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/craig/craig.sh -------------------------------------------------------------------------------- /ray4/craig/display: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/craig/display -------------------------------------------------------------------------------- /ray4/craig/mtvtorast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/craig/mtvtorast -------------------------------------------------------------------------------- /ray4/craig/r4tomtv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/craig/r4tomtv.c -------------------------------------------------------------------------------- /ray4/craig/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/craig/run -------------------------------------------------------------------------------- /ray4/craig/run2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/craig/run2 -------------------------------------------------------------------------------- /ray4/image4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/image4.md -------------------------------------------------------------------------------- /ray4/inputs.r4/HS1.R4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/inputs.r4/HS1.R4 -------------------------------------------------------------------------------- /ray4/inputs.r4/HS2.R4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/inputs.r4/HS2.R4 -------------------------------------------------------------------------------- /ray4/inputs.r4/HS3.R4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/inputs.r4/HS3.R4 -------------------------------------------------------------------------------- /ray4/inputs.r4/HS4.R4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/inputs.r4/HS4.R4 -------------------------------------------------------------------------------- /ray4/inputs.r4/HS5.R4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/inputs.r4/HS5.R4 -------------------------------------------------------------------------------- /ray4/inputs.r4/HS6.R4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/inputs.r4/HS6.R4 -------------------------------------------------------------------------------- /ray4/inputs.r4/HS7.R4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/inputs.r4/HS7.R4 -------------------------------------------------------------------------------- /ray4/inputs.r4/HT1.R4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/inputs.r4/HT1.R4 -------------------------------------------------------------------------------- /ray4/inputs.r4/HT2.R4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/inputs.r4/HT2.R4 -------------------------------------------------------------------------------- /ray4/inputs.r4/HT3.R4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/inputs.r4/HT3.R4 -------------------------------------------------------------------------------- /ray4/inputs.r4/blank.r4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/inputs.r4/blank.r4 -------------------------------------------------------------------------------- /ray4/inputs.r4/dots.r4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/inputs.r4/dots.r4 -------------------------------------------------------------------------------- /ray4/inputs.r4/dots3.r4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/inputs.r4/dots3.r4 -------------------------------------------------------------------------------- /ray4/inputs.r4/dots4.r4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/inputs.r4/dots4.r4 -------------------------------------------------------------------------------- /ray4/inputs.r4/dots_axes.r4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/inputs.r4/dots_axes.r4 -------------------------------------------------------------------------------- /ray4/inputs.r4/format.r4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/inputs.r4/format.r4 -------------------------------------------------------------------------------- /ray4/inputs.r4/hyper.r4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/inputs.r4/hyper.r4 -------------------------------------------------------------------------------- /ray4/inputs.r4/scube.r4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/inputs.r4/scube.r4 -------------------------------------------------------------------------------- /ray4/inputs.r4/sphere.r4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/inputs.r4/sphere.r4 -------------------------------------------------------------------------------- /ray4/inputs.r4/tcube.r4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/inputs.r4/tcube.r4 -------------------------------------------------------------------------------- /ray4/inputs.r4/wdots.r4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/inputs.r4/wdots.r4 -------------------------------------------------------------------------------- /ray4/ray4-c/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/ray4-c/CHANGELOG.md -------------------------------------------------------------------------------- /ray4/ray4-c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/ray4-c/CMakeLists.txt -------------------------------------------------------------------------------- /ray4/ray4-c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/ray4-c/README.md -------------------------------------------------------------------------------- /ray4/ray4-c/ray4-c.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/ray4-c/ray4-c.md -------------------------------------------------------------------------------- /ray4/ray4-c/results/dots.2.icube: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/ray4-c/results/dots.2.icube -------------------------------------------------------------------------------- /ray4/ray4-c/results/dots.icube: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/ray4-c/results/dots.icube -------------------------------------------------------------------------------- /ray4/ray4-c/results/dots_axes.0.icube: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/ray4-c/results/dots_axes.0.icube -------------------------------------------------------------------------------- /ray4/ray4-c/results/ht1.icube: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/ray4-c/results/ht1.icube -------------------------------------------------------------------------------- /ray4/ray4-c/results/ht2.icube: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/ray4-c/results/ht2.icube -------------------------------------------------------------------------------- /ray4/ray4-c/results/ht3.icube: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/ray4-c/results/ht3.icube -------------------------------------------------------------------------------- /ray4/ray4-c/src/amiga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/ray4-c/src/amiga.h -------------------------------------------------------------------------------- /ray4/ray4-c/src/lmkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/ray4-c/src/lmkfile -------------------------------------------------------------------------------- /ray4/ray4-c/src/make.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/ray4-c/src/make.nt -------------------------------------------------------------------------------- /ray4/ray4-c/src/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/ray4-c/src/makefile -------------------------------------------------------------------------------- /ray4/ray4-c/src/makefile-amiga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/ray4-c/src/makefile-amiga -------------------------------------------------------------------------------- /ray4/ray4-c/src/r4_hit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/ray4-c/src/r4_hit.c -------------------------------------------------------------------------------- /ray4/ray4-c/src/r4_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/ray4-c/src/r4_image.h -------------------------------------------------------------------------------- /ray4/ray4-c/src/r4_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/ray4-c/src/r4_io.c -------------------------------------------------------------------------------- /ray4/ray4-c/src/r4_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/ray4-c/src/r4_main.c -------------------------------------------------------------------------------- /ray4/ray4-c/src/r4_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/ray4-c/src/r4_parse.c -------------------------------------------------------------------------------- /ray4/ray4-c/src/r4_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/ray4-c/src/r4_trace.c -------------------------------------------------------------------------------- /ray4/ray4-c/src/r4_vec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/ray4-c/src/r4_vec.c -------------------------------------------------------------------------------- /ray4/ray4-c/src/r4_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/ray4-c/src/r4_vector.h -------------------------------------------------------------------------------- /ray4/ray4-c/src/r4toiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/ray4-c/src/r4toiff.c -------------------------------------------------------------------------------- /ray4/ray4-c/src/r4tosgi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/ray4-c/src/r4tosgi.c -------------------------------------------------------------------------------- /ray4/ray4-c/src/ray4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/ray4-c/src/ray4.h -------------------------------------------------------------------------------- /ray4/ray4-c/src/v4cross.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/ray4-c/src/v4cross.c -------------------------------------------------------------------------------- /ray4/ray4-c/src/v4normalize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/ray4-c/src/v4normalize.c -------------------------------------------------------------------------------- /ray4/ray4-c/src/write_ilbm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/ray4-c/src/write_ilbm.c -------------------------------------------------------------------------------- /ray4/ray4-image-format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/ray4-image-format.md -------------------------------------------------------------------------------- /ray4/ray4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/ray4.md -------------------------------------------------------------------------------- /ray4/results/dots.2.icube: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/results/dots.2.icube -------------------------------------------------------------------------------- /ray4/results/dots.icube: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/results/dots.icube -------------------------------------------------------------------------------- /ray4/results/dots_axes.0.icube: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/results/dots_axes.0.icube -------------------------------------------------------------------------------- /ray4/results/ht1.icube: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/results/ht1.icube -------------------------------------------------------------------------------- /ray4/results/ht2.icube: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/results/ht2.icube -------------------------------------------------------------------------------- /ray4/results/ht3.icube: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/results/ht3.icube -------------------------------------------------------------------------------- /ray4/src/image4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/src/image4.cpp -------------------------------------------------------------------------------- /ray4/src/r4_color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/src/r4_color.cpp -------------------------------------------------------------------------------- /ray4/src/r4_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/src/r4_color.h -------------------------------------------------------------------------------- /ray4/src/r4_hit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/src/r4_hit.cpp -------------------------------------------------------------------------------- /ray4/src/r4_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/src/r4_image.h -------------------------------------------------------------------------------- /ray4/src/r4_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/src/r4_io.cpp -------------------------------------------------------------------------------- /ray4/src/r4_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/src/r4_main.cpp -------------------------------------------------------------------------------- /ray4/src/r4_parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/src/r4_parse.cpp -------------------------------------------------------------------------------- /ray4/src/r4_point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/src/r4_point.cpp -------------------------------------------------------------------------------- /ray4/src/r4_point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/src/r4_point.h -------------------------------------------------------------------------------- /ray4/src/r4_ray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/src/r4_ray.cpp -------------------------------------------------------------------------------- /ray4/src/r4_ray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/src/r4_ray.h -------------------------------------------------------------------------------- /ray4/src/r4_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/src/r4_test.cpp -------------------------------------------------------------------------------- /ray4/src/r4_trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/src/r4_trace.cpp -------------------------------------------------------------------------------- /ray4/src/r4_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/src/r4_vector.cpp -------------------------------------------------------------------------------- /ray4/src/r4_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/src/r4_vector.h -------------------------------------------------------------------------------- /ray4/src/ray4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/ray4/src/ray4.h -------------------------------------------------------------------------------- /thesis/PostScript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/PostScript/README.md -------------------------------------------------------------------------------- /thesis/PostScript/abstract.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/PostScript/abstract.ps -------------------------------------------------------------------------------- /thesis/PostScript/body.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/PostScript/body.ps -------------------------------------------------------------------------------- /thesis/PostScript/figures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/PostScript/figures/README.md -------------------------------------------------------------------------------- /thesis/PostScript/figures/fig31,32.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/PostScript/figures/fig31,32.ps -------------------------------------------------------------------------------- /thesis/PostScript/figures/fig33.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/PostScript/figures/fig33.ps -------------------------------------------------------------------------------- /thesis/PostScript/figures/fig34.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/PostScript/figures/fig34.ps -------------------------------------------------------------------------------- /thesis/PostScript/figures/fig41.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/PostScript/figures/fig41.ps -------------------------------------------------------------------------------- /thesis/PostScript/figures/fig42.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/PostScript/figures/fig42.ps -------------------------------------------------------------------------------- /thesis/PostScript/figures/fig43.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/PostScript/figures/fig43.ps -------------------------------------------------------------------------------- /thesis/PostScript/figures/fig44.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/PostScript/figures/fig44.ps -------------------------------------------------------------------------------- /thesis/PostScript/figures/fig45a.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/PostScript/figures/fig45a.ps -------------------------------------------------------------------------------- /thesis/PostScript/figures/fig45b.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/PostScript/figures/fig45b.ps -------------------------------------------------------------------------------- /thesis/PostScript/figures/fig45c.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/PostScript/figures/fig45c.ps -------------------------------------------------------------------------------- /thesis/PostScript/figures/fig45d.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/PostScript/figures/fig45d.ps -------------------------------------------------------------------------------- /thesis/PostScript/figures/fig46a.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/PostScript/figures/fig46a.ps -------------------------------------------------------------------------------- /thesis/PostScript/figures/fig46b.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/PostScript/figures/fig46b.ps -------------------------------------------------------------------------------- /thesis/PostScript/figures/fig46c.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/PostScript/figures/fig46c.ps -------------------------------------------------------------------------------- /thesis/PostScript/figures/fig46d.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/PostScript/figures/fig46d.ps -------------------------------------------------------------------------------- /thesis/PostScript/figures/fig47a.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/PostScript/figures/fig47a.ps -------------------------------------------------------------------------------- /thesis/PostScript/figures/fig47b.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/PostScript/figures/fig47b.ps -------------------------------------------------------------------------------- /thesis/PostScript/figures/fig51.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/PostScript/figures/fig51.ps -------------------------------------------------------------------------------- /thesis/PostScript/figures/fig52.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/PostScript/figures/fig52.ps -------------------------------------------------------------------------------- /thesis/PostScript/figures/fig53.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/PostScript/figures/fig53.ps -------------------------------------------------------------------------------- /thesis/PostScript/figures/refract.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/PostScript/figures/refract.ps -------------------------------------------------------------------------------- /thesis/PostScript/lof.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/PostScript/lof.ps -------------------------------------------------------------------------------- /thesis/PostScript/title.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/PostScript/title.ps -------------------------------------------------------------------------------- /thesis/PostScript/toc.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/PostScript/toc.ps -------------------------------------------------------------------------------- /thesis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/README.md -------------------------------------------------------------------------------- /thesis/html/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/README.md -------------------------------------------------------------------------------- /thesis/html/abstract.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/abstract.html -------------------------------------------------------------------------------- /thesis/html/ack.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/ack.html -------------------------------------------------------------------------------- /thesis/html/appendix_a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/appendix_a.html -------------------------------------------------------------------------------- /thesis/html/chapter1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/chapter1.html -------------------------------------------------------------------------------- /thesis/html/chapter2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/chapter2.html -------------------------------------------------------------------------------- /thesis/html/chapter3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/chapter3.html -------------------------------------------------------------------------------- /thesis/html/chapter4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/chapter4.html -------------------------------------------------------------------------------- /thesis/html/chapter5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/chapter5.html -------------------------------------------------------------------------------- /thesis/html/chapter6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/chapter6.html -------------------------------------------------------------------------------- /thesis/html/images/FIG31.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/images/FIG31.GIF -------------------------------------------------------------------------------- /thesis/html/images/FIG32.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/images/FIG32.GIF -------------------------------------------------------------------------------- /thesis/html/images/FIG33.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/images/FIG33.GIF -------------------------------------------------------------------------------- /thesis/html/images/FIG34.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/images/FIG34.GIF -------------------------------------------------------------------------------- /thesis/html/images/FIG41.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/images/FIG41.GIF -------------------------------------------------------------------------------- /thesis/html/images/FIG42.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/images/FIG42.GIF -------------------------------------------------------------------------------- /thesis/html/images/FIG43.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/images/FIG43.GIF -------------------------------------------------------------------------------- /thesis/html/images/FIG44.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/images/FIG44.GIF -------------------------------------------------------------------------------- /thesis/html/images/FIG45A.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/images/FIG45A.GIF -------------------------------------------------------------------------------- /thesis/html/images/FIG45B.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/images/FIG45B.GIF -------------------------------------------------------------------------------- /thesis/html/images/FIG45C.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/images/FIG45C.GIF -------------------------------------------------------------------------------- /thesis/html/images/FIG45D.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/images/FIG45D.GIF -------------------------------------------------------------------------------- /thesis/html/images/FIG46A.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/images/FIG46A.GIF -------------------------------------------------------------------------------- /thesis/html/images/FIG46B.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/images/FIG46B.GIF -------------------------------------------------------------------------------- /thesis/html/images/FIG46C.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/images/FIG46C.GIF -------------------------------------------------------------------------------- /thesis/html/images/FIG46D.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/images/FIG46D.GIF -------------------------------------------------------------------------------- /thesis/html/images/FIG47A.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/images/FIG47A.GIF -------------------------------------------------------------------------------- /thesis/html/images/FIG47B.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/images/FIG47B.GIF -------------------------------------------------------------------------------- /thesis/html/images/FIG49.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/images/FIG49.JPG -------------------------------------------------------------------------------- /thesis/html/images/FIG51.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/images/FIG51.GIF -------------------------------------------------------------------------------- /thesis/html/images/FIG52.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/images/FIG52.GIF -------------------------------------------------------------------------------- /thesis/html/images/FIG53.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/images/FIG53.GIF -------------------------------------------------------------------------------- /thesis/html/images/FIG54A.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/images/FIG54A.JPG -------------------------------------------------------------------------------- /thesis/html/images/FIG54B.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/images/FIG54B.JPG -------------------------------------------------------------------------------- /thesis/html/images/FIG55.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/images/FIG55.JPG -------------------------------------------------------------------------------- /thesis/html/images/FIG56.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/images/FIG56.JPG -------------------------------------------------------------------------------- /thesis/html/images/Fig410.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/images/Fig410.JPG -------------------------------------------------------------------------------- /thesis/html/images/Fig411.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/images/Fig411.JPG -------------------------------------------------------------------------------- /thesis/html/images/Fig412.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/images/Fig412.JPG -------------------------------------------------------------------------------- /thesis/html/images/Fig413.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/images/Fig413.JPG -------------------------------------------------------------------------------- /thesis/html/images/Fig414.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/images/Fig414.JPG -------------------------------------------------------------------------------- /thesis/html/images/Fig415.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/images/Fig415.JPG -------------------------------------------------------------------------------- /thesis/html/images/Fig48.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/images/Fig48.JPG -------------------------------------------------------------------------------- /thesis/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/index.html -------------------------------------------------------------------------------- /thesis/html/lof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/lof.html -------------------------------------------------------------------------------- /thesis/html/ref.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/ref.html -------------------------------------------------------------------------------- /thesis/html/thesis.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/html/thesis.css -------------------------------------------------------------------------------- /thesis/images/FIG31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/images/FIG31.png -------------------------------------------------------------------------------- /thesis/images/FIG32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/images/FIG32.png -------------------------------------------------------------------------------- /thesis/images/FIG33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/images/FIG33.png -------------------------------------------------------------------------------- /thesis/images/FIG34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/images/FIG34.png -------------------------------------------------------------------------------- /thesis/images/FIG41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/images/FIG41.png -------------------------------------------------------------------------------- /thesis/images/FIG410.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/images/FIG410.png -------------------------------------------------------------------------------- /thesis/images/FIG44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/images/FIG44.png -------------------------------------------------------------------------------- /thesis/images/FIG45A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/images/FIG45A.png -------------------------------------------------------------------------------- /thesis/images/FIG45B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/images/FIG45B.png -------------------------------------------------------------------------------- /thesis/images/FIG45C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/images/FIG45C.png -------------------------------------------------------------------------------- /thesis/images/FIG54A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/images/FIG54A.png -------------------------------------------------------------------------------- /thesis/images/FIG54B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/images/FIG54B.png -------------------------------------------------------------------------------- /thesis/images/FIG55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/images/FIG55.png -------------------------------------------------------------------------------- /thesis/images/FIG56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/images/FIG56.png -------------------------------------------------------------------------------- /thesis/images/Fig411.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/images/Fig411.png -------------------------------------------------------------------------------- /thesis/images/Fig412.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/images/Fig412.png -------------------------------------------------------------------------------- /thesis/images/Fig413.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/images/Fig413.png -------------------------------------------------------------------------------- /thesis/images/Fig414.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/images/Fig414.png -------------------------------------------------------------------------------- /thesis/images/Fig415.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/images/Fig415.png -------------------------------------------------------------------------------- /thesis/images/Fig48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/images/Fig48.png -------------------------------------------------------------------------------- /thesis/images/fig42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/images/fig42.png -------------------------------------------------------------------------------- /thesis/troff/4dv.macros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/troff/4dv.macros -------------------------------------------------------------------------------- /thesis/troff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/troff/README.md -------------------------------------------------------------------------------- /thesis/troff/abstract: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/troff/abstract -------------------------------------------------------------------------------- /thesis/troff/abstract.view: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/troff/abstract.view -------------------------------------------------------------------------------- /thesis/troff/appendix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/troff/appendix -------------------------------------------------------------------------------- /thesis/troff/ascii.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/troff/ascii.sh -------------------------------------------------------------------------------- /thesis/troff/body.view: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/troff/body.view -------------------------------------------------------------------------------- /thesis/troff/chapter1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/troff/chapter1 -------------------------------------------------------------------------------- /thesis/troff/chapter2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/troff/chapter2 -------------------------------------------------------------------------------- /thesis/troff/chapter3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/troff/chapter3 -------------------------------------------------------------------------------- /thesis/troff/chapter4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/troff/chapter4 -------------------------------------------------------------------------------- /thesis/troff/chapter5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/troff/chapter5 -------------------------------------------------------------------------------- /thesis/troff/chapter6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/troff/chapter6 -------------------------------------------------------------------------------- /thesis/troff/lof.macros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/troff/lof.macros -------------------------------------------------------------------------------- /thesis/troff/lof.view: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/troff/lof.view -------------------------------------------------------------------------------- /thesis/troff/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/troff/makefile -------------------------------------------------------------------------------- /thesis/troff/manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/troff/manifest -------------------------------------------------------------------------------- /thesis/troff/pageinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/troff/pageinfo -------------------------------------------------------------------------------- /thesis/troff/references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/troff/references -------------------------------------------------------------------------------- /thesis/troff/thesis.macros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/troff/thesis.macros -------------------------------------------------------------------------------- /thesis/troff/title: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/troff/title -------------------------------------------------------------------------------- /thesis/troff/title.view: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/troff/title.view -------------------------------------------------------------------------------- /thesis/troff/toc.macros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/troff/toc.macros -------------------------------------------------------------------------------- /thesis/troff/toc.view: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/thesis/troff/toc.view -------------------------------------------------------------------------------- /wire4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/README.md -------------------------------------------------------------------------------- /wire4/inputs/axes.w4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/inputs/axes.w4 -------------------------------------------------------------------------------- /wire4/inputs/basis.w4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/inputs/basis.w4 -------------------------------------------------------------------------------- /wire4/inputs/c.w4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/inputs/c.w4 -------------------------------------------------------------------------------- /wire4/inputs/cube.w4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/inputs/cube.w4 -------------------------------------------------------------------------------- /wire4/inputs/cube3d.w4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/inputs/cube3d.w4 -------------------------------------------------------------------------------- /wire4/inputs/curve1.w4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/inputs/curve1.w4 -------------------------------------------------------------------------------- /wire4/inputs/curve2.w4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/inputs/curve2.w4 -------------------------------------------------------------------------------- /wire4/inputs/curve3.w4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/inputs/curve3.w4 -------------------------------------------------------------------------------- /wire4/inputs/dual.w4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/inputs/dual.w4 -------------------------------------------------------------------------------- /wire4/inputs/figs/4.10.w4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/inputs/figs/4.10.w4 -------------------------------------------------------------------------------- /wire4/inputs/figs/4.11.w4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/inputs/figs/4.11.w4 -------------------------------------------------------------------------------- /wire4/inputs/figs/4.12.w4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/inputs/figs/4.12.w4 -------------------------------------------------------------------------------- /wire4/inputs/figs/4.13.w4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/inputs/figs/4.13.w4 -------------------------------------------------------------------------------- /wire4/inputs/figs/4.14.w4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/inputs/figs/4.14.w4 -------------------------------------------------------------------------------- /wire4/inputs/figs/4.15.w4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/inputs/figs/4.15.w4 -------------------------------------------------------------------------------- /wire4/inputs/figs/4.5a.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/inputs/figs/4.5a.ps -------------------------------------------------------------------------------- /wire4/inputs/figs/4.5a.w4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/inputs/figs/4.5a.w4 -------------------------------------------------------------------------------- /wire4/inputs/figs/4.5b.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/inputs/figs/4.5b.ps -------------------------------------------------------------------------------- /wire4/inputs/figs/4.5b.w4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/inputs/figs/4.5b.w4 -------------------------------------------------------------------------------- /wire4/inputs/figs/4.5c.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/inputs/figs/4.5c.ps -------------------------------------------------------------------------------- /wire4/inputs/figs/4.5c.w4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/inputs/figs/4.5c.w4 -------------------------------------------------------------------------------- /wire4/inputs/figs/4.5d.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/inputs/figs/4.5d.ps -------------------------------------------------------------------------------- /wire4/inputs/figs/4.5d.w4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/inputs/figs/4.5d.w4 -------------------------------------------------------------------------------- /wire4/inputs/figs/4.6a.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/inputs/figs/4.6a.ps -------------------------------------------------------------------------------- /wire4/inputs/figs/4.6a.w4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/inputs/figs/4.6a.w4 -------------------------------------------------------------------------------- /wire4/inputs/figs/4.6b.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/inputs/figs/4.6b.ps -------------------------------------------------------------------------------- /wire4/inputs/figs/4.6b.w4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/inputs/figs/4.6b.w4 -------------------------------------------------------------------------------- /wire4/inputs/figs/4.6c.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/inputs/figs/4.6c.ps -------------------------------------------------------------------------------- /wire4/inputs/figs/4.6c.w4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/inputs/figs/4.6c.w4 -------------------------------------------------------------------------------- /wire4/inputs/figs/4.6d.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/inputs/figs/4.6d.ps -------------------------------------------------------------------------------- /wire4/inputs/figs/4.6d.w4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/inputs/figs/4.6d.w4 -------------------------------------------------------------------------------- /wire4/inputs/figs/4.7a.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/inputs/figs/4.7a.ps -------------------------------------------------------------------------------- /wire4/inputs/figs/4.7a.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/inputs/figs/4.7a.snap -------------------------------------------------------------------------------- /wire4/inputs/figs/4.7b.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/inputs/figs/4.7b.ps -------------------------------------------------------------------------------- /wire4/inputs/figs/4.7b.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/inputs/figs/4.7b.snap -------------------------------------------------------------------------------- /wire4/inputs/figs/4.8.w4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/inputs/figs/4.8.w4 -------------------------------------------------------------------------------- /wire4/inputs/figs/4.9.w4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/inputs/figs/4.9.w4 -------------------------------------------------------------------------------- /wire4/inputs/frustum.w4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/inputs/frustum.w4 -------------------------------------------------------------------------------- /wire4/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/makefile -------------------------------------------------------------------------------- /wire4/psplot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/psplot.c -------------------------------------------------------------------------------- /wire4/psplot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/psplot.md -------------------------------------------------------------------------------- /wire4/strcmpic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/strcmpic.c -------------------------------------------------------------------------------- /wire4/v3cross.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/v3cross.c -------------------------------------------------------------------------------- /wire4/v4cross.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/v4cross.c -------------------------------------------------------------------------------- /wire4/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/vector.h -------------------------------------------------------------------------------- /wire4/w4_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/w4_display.c -------------------------------------------------------------------------------- /wire4/w4_geometry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/w4_geometry.c -------------------------------------------------------------------------------- /wire4/w4_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/w4_main.c -------------------------------------------------------------------------------- /wire4/w4_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/w4_parse.c -------------------------------------------------------------------------------- /wire4/wire4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/wire4.h -------------------------------------------------------------------------------- /wire4/wire4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hollasch/ray4/HEAD/wire4/wire4.md --------------------------------------------------------------------------------