Commit 22da938d3413eb07526643a2f314f38007911fa7

henry 2004-08-17T01:51:39

Added docs

diff --git a/include/FTVectoriser.h b/include/FTVectoriser.h
index 7150560..3153e8d 100644
--- a/include/FTVectoriser.h
+++ b/include/FTVectoriser.h
@@ -94,42 +94,42 @@ class FTGL_EXPORT FTMesh
         ~FTMesh();
         
         /**
-         *
+         * Add a point to the mesh
          */
         void AddPoint( const FTGL_DOUBLE x, const FTGL_DOUBLE y, const FTGL_DOUBLE z);
         
         /**
-         *
+         *  Create a combine point for the gluTesselator
          */
         FTGL_DOUBLE* Combine( const FTGL_DOUBLE x, const FTGL_DOUBLE y, const FTGL_DOUBLE z);
         
         /**
-         *
+         * Begin a new polygon
          */
         void Begin( GLenum meshType);
         
         /**
-         *
+         * End a polygon
          */
         void End();
         
         /**
-         *
+         * Record a gluTesselation error
          */
         void Error( GLenum e) { err = e;}
         
         /**
-         *
+         * The number of tesselations in the mesh
          */
         unsigned int TesselationCount() const { return tesselationList.size();}
 
         /**
-         *
+         * Get a tesselation by index
          */
         const FTTesselation* const Tesselation( unsigned int index) const;
         
         /**
-         *
+         * Return the temporary point list. For testing only.
          */
         const PointList& TempPointList() const { return tempPointList;}