X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fextension%2Finternal%2Fpdfinput%2Fsvg-builder.h;h=28f7e1be3200fb736403b821270d855a27458f99;hb=17d87f5698f5c2958d38c6a6207c7b322a7adaf9;hp=4a57d5bb9aa3ec92bca1124ced42636b4a095c92;hpb=fb051bf646a0d7c2608b9fb93a20657d60063d61;p=inkscape.git diff --git a/src/extension/internal/pdfinput/svg-builder.h b/src/extension/internal/pdfinput/svg-builder.h index 4a57d5bb9..28f7e1be3 100644 --- a/src/extension/internal/pdfinput/svg-builder.h +++ b/src/extension/internal/pdfinput/svg-builder.h @@ -73,8 +73,8 @@ struct SvgGraphicsState { * to the document yet. */ struct SvgGlyph { - NR::Point position; // Absolute glyph coords - NR::Point text_position; // Absolute glyph coords in text space + Geom::Point position; // Absolute glyph coords + Geom::Point text_position; // Absolute glyph coords in text space double dx, dy; // Advance values double rise; // Text rise parameter char code[8]; // UTF-8 coded character @@ -209,8 +209,8 @@ private: char *_font_specification; double _font_scaling; bool _need_font_update; - NR::Matrix _text_matrix; - NR::Point _text_position; + Geom::Matrix _text_matrix; + Geom::Point _text_position; std::vector _glyphs; // Added characters bool _in_text_object; // Whether we are inside a text object bool _invalidated_style;