Skip to content

Commit

Permalink
fixup! reduce size of sphreses for visualisation
Browse files Browse the repository at this point in the history
  • Loading branch information
hrnr committed May 19, 2017
1 parent f0d9403 commit 8e341b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion explore/src/explore.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ void Explore::visualizeFrontiers(
m.id = int(id);
m.pose.position = frontier.initial;
// scale frontier according to its cost (costier frontiers will be smaller)
double scale = min_cost * 0.05 / frontier.cost;
double scale = min_cost * 0.4 / frontier.cost;
m.scale.x = scale;
m.scale.y = scale;
m.scale.z = scale;
Expand Down

0 comments on commit 8e341b7

Please sign in to comment.