Added docs
diff --git a/include/FTVectoriser.h b/include/FTVectoriser.h
index 8f127ed..e489c34 100644
--- a/include/FTVectoriser.h
+++ b/include/FTVectoriser.h
@@ -119,7 +119,14 @@ class FTGL_EXPORT FTTesselation
size_t size() const { return pointList.size();}
+ /**
+ * OpenGL primitive type from gluTesselator.
+ */
GLenum meshType;
+
+ /**
+ * Points generated by gluTesselator.
+ */
typedef FTVector<FTPoint> PointVector;
PointVector pointList;