Changed formatting
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 56
diff --git a/include/FTGlyph.h b/include/FTGlyph.h
index 6494d64..3f70cda 100755
--- a/include/FTGlyph.h
+++ b/include/FTGlyph.h
@@ -16,15 +16,20 @@
class FTGL_EXPORT FTBBox
{
public:
+ /**
+ * Default Constructor
+ *
+ *
+ */
FTBBox()
- : x1(0),
- y1(0),
- z1(0),
- x2(0),
- y2(0),
- z2(0)
+ : x1(0), y1(0), z1(0), x2(0), y2(0), z2(0)
{}
+ /**
+ * Constructor
+ *
+ *
+ */
FTBBox( FT_Glyph glyph)
{
FT_BBox bbox;
@@ -38,15 +43,18 @@ class FTGL_EXPORT FTBBox
z2 = 0;
}
+ /**
+ * Constructor
+ *
+ *
+ */
FTBBox( int a, int b, int c, int d, int e, int f)
- : x1(a),
- y1(b),
- z1(c),
- x2(d),
- y2(e),
- z2(f)
+ : x1(a), y1(b), z1(c), x2(d), y2(e), z2(f)
{}
+ /**
+ * Destructor
+ */
~FTBBox()
{}