MCPcopy Create free account
hub / github.com/crawl/crawl / update_excluded_points

Method update_excluded_points

crawl-ref/source/exclude.cc:246–257  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

244}
245
246void exclude_set::update_excluded_points(bool recompute_los)
247{
248 for (iterator it = exclude_roots.begin(); it != exclude_roots.end(); ++it)
249 {
250 travel_exclude &ex = it->second;
251 if (!ex.uptodate)
252 {
253 recompute_excluded_points(recompute_los);
254 return;
255 }
256 }
257}
258
259void exclude_set::recompute_excluded_points(bool recompute_los)
260{

Callers 1

update_exclusion_losFunction · 0.80

Calls 2

beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected