Code

Cleanup of out-of-sync tests
[inkscape.git] / src / text-tag-attributes.h
index b90eb74498c88e0f5c032557df7c9c2b1ab3fa4e..7a7ba576359f59e1e0ba09560bda3e7d54717739 100644 (file)
@@ -88,11 +88,11 @@ public:
     If \a extend_zero_length is true, then if the x or y vectors are empty
     they will be made length 1 in order to store the newly calculated
     position. */
-    void transform(NR::Matrix const &matrix, double scale_x, double scale_y, bool extend_zero_length = false);
+    void transform(Geom::Matrix const &matrix, double scale_x, double scale_y, bool extend_zero_length = false);
 
     /** Adds the given values to the dx and dy vectors at the given
     \a index. The vectors are extended if necessary. */
-    void addToDxDy(unsigned index, NR::Point const &adjust);
+    void addToDxDy(unsigned index, Geom::Point const &adjust);
 
     /** Adds the given value to the rotate vector at the given \a index. The
     vector is extended if necessary. Delta is measured in degrees, clockwise
@@ -101,7 +101,10 @@ public:
 
     /** Returns the first coordinates in the x and y vectors. If either
     is zero length, 0.0 is used for that coordinate. */
-    NR::Point firstXY() const;
+    Geom::Point firstXY() const;
+
+    /** Sets the first coordinates in the x and y vectors. */
+    void setFirstXY(Geom::Point &point);
 
 private:
     /// This holds the actual values.