Home
last modified time | relevance | path

Searched refs:xCellCount (Results 1 – 2 of 2) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/util/
H A Dgrid_index.cpp15 xCellCount(std::ceil(width_ / cellSize_)), in GridIndex()
17 xScale(xCellCount / width_), in GridIndex()
20 boxCells.resize(xCellCount * yCellCount); in GridIndex()
21 circleCells.resize(xCellCount * yCellCount); in GridIndex()
36 cellIndex = xCellCount * y + x; in insert()
56 cellIndex = xCellCount * y + x; in insert()
149 cellIndex = xCellCount * y + x; in query()
212 cellIndex = xCellCount * y + x; in query()
248 return util::max(0.0, util::min(xCellCount - 1.0, std::floor(x * xScale))); in convertToXCellCoord()
H A Dgrid_index.hpp93 const int16_t xCellCount; member in mbgl::GridIndex