Documentation.
This commit is contained in:
parent
eef0bebacf
commit
85b1bbb641
@ -40,7 +40,12 @@
|
|||||||
namespace PolyVox
|
namespace PolyVox
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Provides an interface for performing paging of data.
|
* An implementation of Pager which stores voxels to files on disk. Each chunk is written
|
||||||
|
* to a seperate file and you can specify the name of a folder where these will be stored.
|
||||||
|
*
|
||||||
|
* Note that no compression is performed (mostly to avoid dependancies) so for large
|
||||||
|
* volumes you may want to consider this class as an example and create a custom version
|
||||||
|
* with compression.
|
||||||
*/
|
*/
|
||||||
template <typename VoxelType>
|
template <typename VoxelType>
|
||||||
class FilePager : public PagedVolume<VoxelType>::Pager
|
class FilePager : public PagedVolume<VoxelType>::Pager
|
||||||
|
@ -29,6 +29,7 @@
|
|||||||
|
|
||||||
namespace PolyVox
|
namespace PolyVox
|
||||||
{
|
{
|
||||||
|
/// Unfinished class/feature, not appropriate for end user at the moment.
|
||||||
template <typename IteratorType>
|
template <typename IteratorType>
|
||||||
class IteratorController
|
class IteratorController
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user