Dmitry V. Sokolov

Results 51 comments of Dmitry V. Sokolov

Yup, the file is corrupted. Seems that you have not used `std::ofstream::binary` flag. Check this issue https://github.com/ssloy/tinyraycaster/issues/9

Wow, that's very cool, thank you!

ESP + OLED, binary image with simple test if the color is >128. 1.5s for the 64 x 128 screen size.

3 weeks of constant uptime. Now with dithering :)

Fantastic. Can't wait for my display to arrive :)

Good job, thank you for sharing! One minor comment: in this place i'd put spherical coordinates instead: ```python x = int((math.atan2(norm_dir.z, norm_dir, x)/(2*math.pi) + 0.5)*env_width) y = int(math.acos(norm_dir.y)/math.pi*env_height) ```

Yup, exponential complexity. I give this in my lectures to motivate for the rasterization technique. I guess that Python makes it a little bit more expensive, C++ implementation takes a...

Awesome, thank you for sharing!

Very cool, thank you!