summaryrefslogtreecommitdiffstats
path: root/src/proj_pt.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/proj_pt.cpp')
-rw-r--r--src/proj_pt.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/proj_pt.cpp b/src/proj_pt.cpp
index d7906a4e2..9294046ab 100644
--- a/src/proj_pt.cpp
+++ b/src/proj_pt.cpp
@@ -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 *