Code

Patch from codedread. Prevents rendering of title/desc/metadata elements in text...
[inkscape.git] / src / display / guideline.h
index 66e2ee50ee4305a972c1f1172e37817a0959a4bb..451aec1da24d5ca4db4a960618b7b3e35784917a 100644 (file)
@@ -31,6 +31,9 @@ struct SPGuideLine {
     double angle;
 
     unsigned int sensitive : 1;
+
+    inline bool is_horizontal() const { return (normal_to_line[Geom::X] == 0.); };
+    inline bool is_vertical() const { return (normal_to_line[Geom::Y] == 0.); };
 };
 
 struct SPGuideLineClass {