summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/losparam.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/losparam.cc')
-rw-r--r--crawl-ref/source/losparam.cc12
1 files changed, 0 insertions, 12 deletions
diff --git a/crawl-ref/source/losparam.cc b/crawl-ref/source/losparam.cc
index a6c696c60d..68e6aa2e18 100644
--- a/crawl-ref/source/losparam.cc
+++ b/crawl-ref/source/losparam.cc
@@ -62,15 +62,3 @@ opacity_type opacity_monmove::operator()(const coord_def& p) const
else
return (OPC_CLEAR);
}
-
-// LOS bounded by fixed presquared radius.
-bool bounds_radius_sq::operator()(const coord_def& p) const
-{
- return (p.abs() <= radius_sq);
-}
-
-// LOS bounded by current global LOS radius.
-bool bounds_cur_los_radius::operator()(const coord_def& p) const
-{
- return (p.abs() <= get_los_radius_sq());
-}