From 034928d5b92364a4d1d3fad31eff2afa552e0683 Mon Sep 17 00:00:00 2001 From: David Williams Date: Tue, 17 May 2011 22:51:42 +0100 Subject: [PATCH] Updated documentation with new include path. --- documentation/tutorial1.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/documentation/tutorial1.rst b/documentation/tutorial1.rst index 4ff47f7b..e1c7b153 100644 --- a/documentation/tutorial1.rst +++ b/documentation/tutorial1.rst @@ -14,10 +14,10 @@ To get started, we need to include the following headers: .. code-block:: c++ - #include "MaterialDensityPair.h" - #include "CubicSurfaceExtractorWithNormals.h" - #include "SurfaceMesh.h" - #include "Volume.h" + #include "PolyVoxCore/MaterialDensityPair.h" + #include "PolyVoxCore/CubicSurfaceExtractorWithNormals.h" + #include "PolyVoxCore/SurfaceMesh.h" + #include "PolyVoxCore/Volume.h" The most fundamental construct when working with PolyVox is that of the volume. This is represented by the :polyvox:`Volume` class and stores a 3D grid of voxels. Our basic example application creates a volume with the following line of code: