├── .gitignore ├── LICENSE ├── README.md ├── color.go ├── lights.go ├── main.go ├── material.go ├── primitives.go ├── ray.go ├── samples ├── helix.png ├── helix.txt ├── pyramid.png ├── pyramid.txt ├── scene.png └── scene.txt ├── scene.go └── vector.go /.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | .desktop -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrozen/rayito/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrozen/rayito/HEAD/README.md -------------------------------------------------------------------------------- /color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrozen/rayito/HEAD/color.go -------------------------------------------------------------------------------- /lights.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrozen/rayito/HEAD/lights.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrozen/rayito/HEAD/main.go -------------------------------------------------------------------------------- /material.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrozen/rayito/HEAD/material.go -------------------------------------------------------------------------------- /primitives.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrozen/rayito/HEAD/primitives.go -------------------------------------------------------------------------------- /ray.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrozen/rayito/HEAD/ray.go -------------------------------------------------------------------------------- /samples/helix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrozen/rayito/HEAD/samples/helix.png -------------------------------------------------------------------------------- /samples/helix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrozen/rayito/HEAD/samples/helix.txt -------------------------------------------------------------------------------- /samples/pyramid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrozen/rayito/HEAD/samples/pyramid.png -------------------------------------------------------------------------------- /samples/pyramid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrozen/rayito/HEAD/samples/pyramid.txt -------------------------------------------------------------------------------- /samples/scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrozen/rayito/HEAD/samples/scene.png -------------------------------------------------------------------------------- /samples/scene.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrozen/rayito/HEAD/samples/scene.txt -------------------------------------------------------------------------------- /scene.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrozen/rayito/HEAD/scene.go -------------------------------------------------------------------------------- /vector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrozen/rayito/HEAD/vector.go --------------------------------------------------------------------------------