Using very similar code to viewers() and oviewers, a new boolean argument has been added to CalculateVisibility(), called ignore_light (false by default). Setting it to true will skip all the luminosity checks in the algorithm. As there aren't actually any at the moment, it does nothing different, but once CalculateVisibility() is fully finished, it hopefully should.
Fixes #1755
Using very similar code to
viewers()
andoviewers
, a new boolean argument has been added toCalculateVisibility()
, calledignore_light
(false by default). Setting it to true will skip all the luminosity checks in the algorithm. As there aren't actually any at the moment, it does nothing different, but onceCalculateVisibility()
is fully finished, it hopefully should.