Skip to content

Commit

Permalink
Remove ability to change bucket size after construction
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonCampolattaro committed Jul 29, 2020
1 parent cd797bf commit a73632b
Showing 1 changed file with 1 addition and 4 deletions.
Expand Up @@ -488,6 +488,7 @@ class Octree : public PointAccessor {
}
}

// TODO: Can this be externalized?
bool drawSamplesFromCellContainingPoint(const Point_3 &p,
std::size_t level,
std::set<std::size_t> &indices,
Expand Down Expand Up @@ -541,10 +542,6 @@ class Octree : public PointAccessor {
return m_max_level;
}

void setBucketSize(std::size_t bucketSize) {
m_bucket_size = bucketSize;
}

const Bbox_3 &boundingBox() {
return m_bBox;
}
Expand Down

0 comments on commit a73632b

Please sign in to comment.