Code

Store cached icons to disk between runs, and invalidate/purge as needed.
[inkscape.git] / src / proj_pt.cpp
index d7906a4e243202cf973ee95136ff03f54c417a40..1d308f847f0860f719ce8039055c00ec22ab4710 100644 (file)
@@ -45,12 +45,12 @@ Pt2::normalize() {
     pt[2] = 1.0;
 }
 
-NR::Point
+Geom::Point
 Pt2::affine() {
   if (fabs(pt[2]) < epsilon) {
-    return NR::Point (NR_HUGE, NR_HUGE);
+    return Geom::Point (NR_HUGE, NR_HUGE);
   }
-  return NR::Point (pt[0]/pt[2], pt[1]/pt[2]);
+  return Geom::Point (pt[0]/pt[2], pt[1]/pt[2]);
 }
 
 gchar *
@@ -116,4 +116,4 @@ Pt3::coord_string() {
   fill-column:99
   End:
 */
-// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :
+// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :