Code

now that selection description includes style (filtered, clipped), we need to update...
[inkscape.git] / src / sp-gradient.h
index 8576d0a82aefcce6e7e093fdb2a6cd1f24061792..3a26f5e5a53d618e6738ec6e958d60a4d873abef 100644 (file)
@@ -39,8 +39,7 @@ typedef enum {
 } SPGradientState;
 
 typedef enum {
-    POINT_G_INVALID,
-    POINT_LG_BEGIN,
+    POINT_LG_BEGIN =0, //start enum at 0 (for indexing into gr_knot_shapes array for example)
     POINT_LG_END,
     POINT_LG_MID,
     POINT_RG_CENTER,
@@ -48,7 +47,10 @@ typedef enum {
     POINT_RG_R2,
     POINT_RG_FOCUS,
     POINT_RG_MID1,
-    POINT_RG_MID2
+    POINT_RG_MID2,
+    // insert new point types here.
+    
+    POINT_G_INVALID
 } GrPointType;
 
 /**
@@ -66,7 +68,7 @@ struct SPGradient : public SPPaintServer {
        SPGradientUnits units;
        guint units_set : 1;
        /** gradientTransform attribute */
-       NR::Matrix gradientTransform;
+       Geom::Matrix gradientTransform;
        guint gradientTransform_set : 1;
        /** spreadMethod attribute */
        SPGradientSpread spread;