Documentation changes.

This commit is contained in:
David Williams
2016-01-11 22:54:27 +00:00
parent e433a697cb
commit 0fe41fe28c
5 changed files with 21 additions and 24 deletions

View File

@ -36,6 +36,12 @@
namespace PolyVox
{
/**
* Simple volume implementation which stores data in a single large 3D array.
*
* This class is less memory-efficient than the PagedVolume, but it is the simplest possible
* volume implementation which makes it useful for debugging and getting started with PolyVox.
*/
template <typename VoxelType>
class RawVolume : public BaseVolume<VoxelType>
{