Updated TODOs

This commit is contained in:
2024-12-30 12:12:58 +01:00
parent 3c7f4d22da
commit 47e23dc12e
4 changed files with 1 additions and 100 deletions

View File

@@ -80,7 +80,7 @@ __host__ void generateVolume(float* volumeData, int volW, int volH, int volD) {
}
}
// Samples the voxel nearest to the given coordinates. TODO: Can be re-used in other places
// Samples the voxel nearest to the given coordinates. TODO: Can be re-used in other places so move
__device__ float sampleVolumeNearest(float* volumeData, const int volW, const int volH, const int volD, int vx, int vy, int vz) {
if (vx < 0) vx = 0;
if (vy < 0) vy = 0;