This repository has been archived on 2023-10-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
blender-archive/source/blender/freestyle/intern/geometry/HashGrid.cpp

31 lines
587 B
C++

/* SPDX-License-Identifier: GPL-2.0-or-later */
/** \file
* \ingroup freestyle
* \brief Class to define a cell grid surrounding the bounding box of the scene
*/
#include "HashGrid.h"
namespace Freestyle {
void HashGrid::clear()
{
if (!_cells.empty()) {
for (GridHashTable::iterator it = _cells.begin(); it != _cells.end(); it++) {
Cell *cell = (*it).second;
delete cell;
}
_cells.clear();
}
Grid::clear();
}
void HashGrid::configure(const Vec3r &orig, const Vec3r &size, uint nb)
{
Grid::configure(orig, size, nb);
}
} /* namespace Freestyle */