Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/SofaSphFluid/SpatialGridPointModel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ bool SpatialGridPointModel::OctreeSorter::operator()(const Grid::Key& k1, const
return false;
}

void SpatialGridPointModel::computeBoundingTree(int maxDepth)
void SpatialGridPointModel::doComputeBoundingTree(int maxDepth)
{
if (!grid)
{
Expand Down
2 changes: 1 addition & 1 deletion src/SofaSphFluid/SpatialGridPointModel.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class SOFA_SPH_FLUID_API SpatialGridPointModel : public geometry::PointCollision

// -- CollisionModel interface

void computeBoundingTree(int maxDepth=0) override;
void doComputeBoundingTree(int maxDepth=0) override;

Grid* getGrid() { return grid->getGrid(); }
protected:
Expand Down
Loading