Added docs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
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;}