summaryrefslogtreecommitdiffstats
path: root/src/libnr/nr-point.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libnr/nr-point.h')
-rw-r--r--src/libnr/nr-point.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/libnr/nr-point.h b/src/libnr/nr-point.h
index 60c5586b0..c1ec3adc9 100644
--- a/src/libnr/nr-point.h
+++ b/src/libnr/nr-point.h
@@ -18,13 +18,6 @@
#include <2geom/point.h>
-/// A NRPoint consists of x and y coodinates.
-/// \todo
-/// This class appears to be obsoleted out in favour of NR::Point.
-struct NRPoint {
- NR::Coord x, y;
-};
-
namespace NR {
class Matrix;
@@ -40,11 +33,6 @@ public:
_pt[Y] = y;
}
- inline Point(NRPoint const &p) {
- _pt[X] = p.x;
- _pt[Y] = p.y;
- }
-
inline Point(Point const &p) {
for (unsigned i = 0; i < 2; ++i) {
_pt[i] = p._pt[i];