summaryrefslogtreecommitdiffstats
path: root/src/libnr/nr-values.cpp
diff options
context:
space:
mode:
authorAndrew Higginson <at.higginson@gmail.com>2011-12-27 21:04:47 +0000
committerAndrew <at.higginson@gmail.com>2011-12-27 21:04:47 +0000
commit80960b623a99aae1402ab651b2974ef544ed3b03 (patch)
treeba49d42c2789e9e11f805e2d5263e10f9fedeef8 /src/libnr/nr-values.cpp
parenttry to fix bug (diff)
parentGDL: Cherry-pick upstream patch 73852 (2011-03-23) - Add missing return value. (diff)
downloadinkscape-80960b623a99aae1402ab651b2974ef544ed3b03.tar.gz
inkscape-80960b623a99aae1402ab651b2974ef544ed3b03.zip
merged with trunk so I can build again...
(bzr r10092.1.36)
Diffstat (limited to 'src/libnr/nr-values.cpp')
-rw-r--r--src/libnr/nr-values.cpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/libnr/nr-values.cpp b/src/libnr/nr-values.cpp
deleted file mode 100644
index f828c1396..000000000
--- a/src/libnr/nr-values.cpp
+++ /dev/null
@@ -1,22 +0,0 @@
-#define __NR_VALUES_C__
-
-#include <libnr/nr-rect-l.h>
-#include <libnr/nr-matrix-fns.h>
-
-
-/*
-The following predefined objects are for reference
-and comparison.
-*/
-NR::Matrix NR_MATRIX_IDENTITY = NR::identity();
-NRRect NR_RECT_EMPTY(NR_HUGE, NR_HUGE, -NR_HUGE, -NR_HUGE);
-NRRectL NR_RECT_L_EMPTY =
- {NR_HUGE_L, NR_HUGE_L, -NR_HUGE_L, -NR_HUGE_L};
-NRRectL NR_RECT_S_EMPTY =
- {NR_HUGE_S, NR_HUGE_S, -NR_HUGE_S, -NR_HUGE_S};
-
-/** component_vectors[i] is like $e_i$ in common mathematical usage;
- or equivalently $I_i$ (where $I$ is the identity matrix). */
-NR::Point const component_vectors[] = {NR::Point(1., 0.),
- NR::Point(0., 1.)};
-