diff options
| author | Joshua L. Blocher <verbalshadow@gmail.com> | 2008-11-28 22:33:23 +0000 |
|---|---|---|
| committer | verbalshadow <verbalshadow@users.sourceforge.net> | 2008-11-28 22:33:23 +0000 |
| commit | ad5c3f2ab7b02b3d913bf86d440590c93aae5a23 (patch) | |
| tree | 8a3ba9f25a15735ef07c6d693bbaea86fad55869 /src/text-tag-attributes.h | |
| parent | bug #168370 (consider parent transform and viewBox) (diff) | |
| download | inkscape-ad5c3f2ab7b02b3d913bf86d440590c93aae5a23.tar.gz inkscape-ad5c3f2ab7b02b3d913bf86d440590c93aae5a23.zip | |
NR->Geom conversion of some text functions and tweak-context
(bzr r6915)
Diffstat (limited to 'src/text-tag-attributes.h')
| -rw-r--r-- | src/text-tag-attributes.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/text-tag-attributes.h b/src/text-tag-attributes.h index 9c1425dff..7a7ba5763 100644 --- a/src/text-tag-attributes.h +++ b/src/text-tag-attributes.h @@ -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,10 +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(NR::Point &point); + void setFirstXY(Geom::Point &point); private: /// This holds the actual values. |
