├── README.md ├── demo.playground ├── Contents.swift ├── Sources │ ├── pixel.swift │ └── vec3.swift ├── contents.xcplayground ├── playground.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── marius.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── timeline.xctimeline └── images ├── raytracing1.png └── raytracing2.png /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhorga/Raytracing/HEAD/README.md -------------------------------------------------------------------------------- /demo.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhorga/Raytracing/HEAD/demo.playground/Contents.swift -------------------------------------------------------------------------------- /demo.playground/Sources/pixel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhorga/Raytracing/HEAD/demo.playground/Sources/pixel.swift -------------------------------------------------------------------------------- /demo.playground/Sources/vec3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhorga/Raytracing/HEAD/demo.playground/Sources/vec3.swift -------------------------------------------------------------------------------- /demo.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhorga/Raytracing/HEAD/demo.playground/contents.xcplayground -------------------------------------------------------------------------------- /demo.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhorga/Raytracing/HEAD/demo.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /demo.playground/playground.xcworkspace/xcuserdata/marius.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhorga/Raytracing/HEAD/demo.playground/playground.xcworkspace/xcuserdata/marius.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /demo.playground/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhorga/Raytracing/HEAD/demo.playground/timeline.xctimeline -------------------------------------------------------------------------------- /images/raytracing1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhorga/Raytracing/HEAD/images/raytracing1.png -------------------------------------------------------------------------------- /images/raytracing2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhorga/Raytracing/HEAD/images/raytracing2.png --------------------------------------------------------------------------------