Code

Packaging. New Brazilian Portuguese NSH file. Set trunk package date to 2011.
[inkscape.git] / src / live_effects / lpe-line_segment.h
index a64eea4cbc1a753e856b2720fb7f447131e3e82e..3a8e895e3c50f1f7358f80324f9d2cc6f80e7e77 100644 (file)
@@ -22,8 +22,8 @@ namespace LivePathEffect {
 
 enum EndType {
     END_CLOSED,
-    END_OPEN_LEFT,
-    END_OPEN_RIGHT,
+    END_OPEN_INITIAL,
+    END_OPEN_FINAL,
     END_OPEN_BOTH
 };
 
@@ -41,7 +41,7 @@ public:
 
 private:
     Geom::Point A, B; // intersections of the line segment with the limiting bounding box
-    Geom::Coord w, h; // document width and height
+    Geom::Point bboxA, bboxB; // upper left and lower right corner of limiting bounding box
 
     LPELineSegment(const LPELineSegment&);
     LPELineSegment& operator=(const LPELineSegment&);