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

@ -34,6 +34,11 @@
namespace PolyVox
{
/**
* Represents a vertex in a mesh and includes position and normal information.
* There is also a 'data' member, which usually stores the (possibly interpolated)
* value of the voxel(s) which caused the vertex to be generated.
*/
template<typename _DataType>
struct Vertex
{