ray-tracer-challenge-netcore icon indicating copy to clipboard operation
ray-tracer-challenge-netcore copied to clipboard

My attempt at implementing the The Ray Tracer Challenge book in .NET Core and C#

Results 4 ray-tracer-challenge-netcore issues
Sort by recently updated
recently updated
newest added

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`...

enhancement

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...

enhancement

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...

enhancement