Skip to content

Commit

Permalink
fix(mission_planner): fix function name renaming
Browse files Browse the repository at this point in the history
Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>
  • Loading branch information
isamu-takagi committed Sep 1, 2022
1 parent df0fd74 commit 8744be0
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,22 +28,22 @@ bool exists(const std::unordered_set<lanelet::Id> & set, const lanelet::Id & id)
return set.find(id) != set.end();
}

std::string toString(const geometry_msgs::msg::Pose & pose)
std::string to_string(const geometry_msgs::msg::Pose & pose)
{
std::stringstream ss;
ss << "(" << pose.position.x << ", " << pose.position.y << "," << pose.position.z << ")";
return ss.str();
}

void setColor(std_msgs::msg::ColorRGBA * cl, double r, double g, double b, double a)
void set_color(std_msgs::msg::ColorRGBA * cl, double r, double g, double b, double a)
{
cl->r = r;
cl->g = g;
cl->b = b;
cl->a = a;
}

void insertMarkerArray(
void insert_marker_array(
visualization_msgs::msg::MarkerArray * a1, const visualization_msgs::msg::MarkerArray & a2)
{
a1->markers.insert(a1->markers.end(), a2.markers.begin(), a2.markers.end());
Expand Down

0 comments on commit 8744be0

Please sign in to comment.