Skip to content
Open
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
5 changes: 5 additions & 0 deletions src/transformation/voxelization/voxel_set.rs
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,11 @@ impl VoxelSet {
&self.voxels
}

/// A mutable reference to the set of voxels.
pub fn voxels_mut(&mut self) -> &mut Vec<Voxel> {
&mut self.voxels
}

/// Update the bounding box of this voxel set.
pub fn compute_bb(&mut self) {
let num_voxels = self.voxels.len();
Expand Down