73 lines
3.0 KiB
C++
73 lines
3.0 KiB
C++
/*******************************************************************************
|
|
Copyright (c) 2005-2009 David Williams
|
|
|
|
This software is provided 'as-is', without any express or implied
|
|
warranty. In no event will the authors be held liable for any damages
|
|
arising from the use of this software.
|
|
|
|
Permission is granted to anyone to use this software for any purpose,
|
|
including commercial applications, and to alter it and redistribute it
|
|
freely, subject to the following restrictions:
|
|
|
|
1. The origin of this software must not be misrepresented; you must not
|
|
claim that you wrote the original software. If you use this software
|
|
in a product, an acknowledgment in the product documentation would be
|
|
appreciated but is not required.
|
|
|
|
2. Altered source versions must be plainly marked as such, and must not be
|
|
misrepresented as being the original software.
|
|
|
|
3. This notice may not be removed or altered from any source
|
|
distribution.
|
|
*******************************************************************************/
|
|
|
|
#include "Shapes.h"
|
|
|
|
#include "PolyVoxCore/MaterialDensityPair.h"
|
|
|
|
using namespace PolyVox;
|
|
|
|
void createSphereInVolume(LargeVolume<MaterialDensityPair44>& volData, float fRadius, uint8_t uValue)
|
|
{
|
|
//This vector hold the position of the center of the volume
|
|
Vector3DInt32 v3dVolCenter = (volData.getEnclosingRegion().getUpperCorner() - volData.getEnclosingRegion().getLowerCorner()) / static_cast<int32_t>(2);
|
|
|
|
//This three-level for loop iterates over every voxel in the volume
|
|
for (int z = 0; z < volData.getWidth(); z++)
|
|
{
|
|
for (int y = 0; y < volData.getHeight(); y++)
|
|
{
|
|
for (int x = 0; x < volData.getDepth(); x++)
|
|
{
|
|
//Store our current position as a vector...
|
|
Vector3DInt32 v3dCurrentPos(x,y,z);
|
|
//And compute how far the current position is from the center of the volume
|
|
double fDistToCenter = (v3dCurrentPos - v3dVolCenter).length();
|
|
|
|
//If the current voxel is less than 'radius' units from the center
|
|
//then we make it solid, otherwise we make it empty space.
|
|
if(fDistToCenter <= fRadius)
|
|
{
|
|
volData.setVoxelAt(x,y,z, MaterialDensityPair44(uValue, uValue > 0 ? VoxelTypeTraits<MaterialDensityPair44>::maxDensity() : VoxelTypeTraits<MaterialDensityPair44>::minDensity()));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void createCubeInVolume(LargeVolume<MaterialDensityPair44>& volData, Vector3DInt32 lowerCorner, Vector3DInt32 upperCorner, uint8_t uValue)
|
|
{
|
|
int maxDen = VoxelTypeTraits<MaterialDensityPair44>::maxDensity();
|
|
int minDen = VoxelTypeTraits<MaterialDensityPair44>::minDensity();
|
|
//This three-level for loop iterates over every voxel between the specified corners
|
|
for (int z = lowerCorner.getZ(); z <= upperCorner.getZ(); z++)
|
|
{
|
|
for (int y = lowerCorner.getY(); y <= upperCorner.getY(); y++)
|
|
{
|
|
for (int x = lowerCorner.getX() ; x <= upperCorner.getX(); x++)
|
|
{
|
|
volData.setVoxelAt(x,y,z, MaterialDensityPair44(uValue, uValue > 0 ? maxDen : minDen));
|
|
}
|
|
}
|
|
}
|
|
} |