This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
""" | |
Script to manage ROS environment. | |
""" | |
import os | |
import sys |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* \brief Function to merge the vectors of geometry_msgs::Point32 | |
* \param vin : input vector | |
* \param vout : output vector (output value) | |
*/ | |
void merge_point32_vector(const std::vector<geometry_msgs::Point32>& vin, std::vector<geometry_msgs::Point32>& vout) | |
{ | |
vout.reserve(vout.size() + vin.size()); | |
vout.insert(vout.end(), vin.begin(), vin.end()); |