A bit of late night work designing the little iterators.

This commit is contained in:
Zed A. Shaw 2024-12-14 11:00:52 -05:00
parent da0b941dfd
commit 8e470df554
11 changed files with 115 additions and 235 deletions

View file

@ -40,7 +40,7 @@ namespace lighting {
LightRender(size_t width, size_t height) :
$width(width),
$height(height),
$lightmap(height, MatrixRow(width, 0)),
$lightmap(height, matrix::Row(width, 0)),
$paths(width, height)
{}