Skip to content
Snippets Groups Projects
Commit 3717fd30 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[GL] Remove unnecessary comparison. unsigned >= 0.

parent fc12c6d2
No related branches found
No related tags found
No related merge requests found
......@@ -148,9 +148,7 @@ double Raster::interpolateValueAtPoint(MathLib::Point3d const& pnt) const
for (unsigned j=0; j<4; ++j)
{
// check if neighbour pixel is still on the raster, otherwise substitute a no data value
if ( (xIdx + x_nb[j]) < 0 ||
(yIdx + y_nb[j]) < 0 ||
(xIdx + x_nb[j]) > _ll_pnt[0]+(_n_cols*_cell_size) ||
if ( (xIdx + x_nb[j]) > _ll_pnt[0]+(_n_cols*_cell_size) ||
(yIdx + y_nb[j]) > _ll_pnt[1]+(_n_rows*_cell_size) )
pix_val[j] = _no_data_val;
else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment