summaryrefslogtreecommitdiff
blob: 212983d884378d0405f5601f26b581b7c333dc32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--- src/nodepath.cpp	2004-11-27 21:09:15.000000000
-0600
+++ src/nodepath.cpp	2004-12-13 04:06:14.000000000 -0600
@@ -2217,9 +2217,9 @@
 
     // remember the origin of the control
     if (n->p.knot == knot) {
-        n->p.origin = Radial(n->p.pos - n->pos);
+        n->p.origin = n->p.pos - n->pos;
     } else if (n->n.knot == knot) {
-        n->n.origin = Radial(n->n.pos - n->pos);
+        n->n.origin = n->n.pos - n->pos;
     } else {
         g_assert_not_reached();
     }