Merge branch terrible and branch awful
[ipdf/code.git] / src / quadtree.cpp
index b84bb78..623bd38 100644 (file)
@@ -297,6 +297,15 @@ QuadTreeIndex QuadTree::GetNeighbour(QuadTreeIndex start, int xdir, int ydir, Do
        return -1;
 }
 
+void QuadTree::GetCanonicalCoords(QuadTreeIndex& start, Real& x, Real& y, Document *doc)
+{
+       int _x = (int)x;
+       int _y = (int)y;
+       start = GetNeighbour(start, _x, _y, doc);
+       x -= _x;
+       y -= _y;
+}
+
 }
 
 #endif

UCC git Repository :: git.ucc.asn.au