ray-tracer-challenge-netcore
ray-tracer-challenge-netcore copied to clipboard
My attempt at implementing the The Ray Tracer Challenge book in .NET Core and C#
RE: [Concrete Tuple Types](https://github.com/y2k4life/StealthTechRayTracer/tree/tuple-types/src/StealthTech.RayTracer.Library) I got the book! In one of the first post you reason about concrete classes for vector and point. I think I have some suggestions. You...
The way the code is written might be your preferences and therefore I did not submit a pull request. 1. Namespace - suggest camel case instead of `codeclimber.raytracer` use `CodeClimber.RayTracer`...
System.Numerics provides Vector3 and Vector4 structures, as well as Matrixes, and all the possible operations. Those classes are also optimized to use SIMD operations in the CPU. After the actual...
Hi @simonech Good to see someone else doing the ray tracer challenge with .NET CORE! I have some suggestions if you don't mind :) 1. Instead of creating a method...