summaryrefslogtreecommitdiff
path: root/src/mbgl/text/collision_tile.hpp
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2016-03-16 17:45:00 -0700
committerJohn Firebaugh <john.firebaugh@gmail.com>2016-05-05 11:30:53 -0700
commit9330d674a983652d248d6a43fa4adbf5970c3d30 (patch)
treebd9292fcdb14f416922197f36c7707bb52e13591 /src/mbgl/text/collision_tile.hpp
parentf89cfacab2457602c5bd81ab9da35cede23584e2 (diff)
downloadqtlocation-mapboxgl-9330d674a983652d248d6a43fa4adbf5970c3d30.tar.gz
[core] Use geometry.hpp's point
Diffstat (limited to 'src/mbgl/text/collision_tile.hpp')
-rw-r--r--src/mbgl/text/collision_tile.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mbgl/text/collision_tile.hpp b/src/mbgl/text/collision_tile.hpp
index 4bc25ddcb7..df769ac203 100644
--- a/src/mbgl/text/collision_tile.hpp
+++ b/src/mbgl/text/collision_tile.hpp
@@ -52,9 +52,9 @@ public:
private:
float findPlacementScale(float minPlacementScale,
- const vec2<float>& anchor, const CollisionBox& box,
- const vec2<float>& blockingAnchor, const CollisionBox& blocking);
- Box getTreeBox(const vec2<float>& anchor, const CollisionBox& box, const float scale = 1.0);
+ const Point<float>& anchor, const CollisionBox& box,
+ const Point<float>& blockingAnchor, const CollisionBox& blocking);
+ Box getTreeBox(const Point<float>& anchor, const CollisionBox& box, const float scale = 1.0);
Tree tree;
Tree ignoredTree;