Closed mabelzhang closed 8 years ago
Line 406 in pcl_conversions.h in hydro-devel seems to repeat the line before it:
pcl_conversions.h
hydro-devel
void moveFromPCL(pcl::PolygonMesh &pcl_mesh, pcl_msgs::PolygonMesh &mesh) moveFromPCL(pcl_mesh.cloud, mesh.cloud); moveFromPCL(pcl_mesh.cloud, mesh.cloud);
From other functions around it, looks like the last line should be pcl_mesh.polygon and mesh.polygon, instead of .cloud.
pcl_mesh.polygon
mesh.polygon
.cloud
Similar thing is in indigo-devel 436:
https://github.com/ros-perception/pcl_conversions/blob/indigo-devel/include/pcl_conversions/pcl_conversions.h#L431-L437
@mabelzhang I agree with you and thanks for letting us know. I'm sure that @paulbovbel would be willing to look into that, but a pull request might help us get it merged and released sooner.
Line 406 in
pcl_conversions.h
inhydro-devel
seems to repeat the line before it:From other functions around it, looks like the last line should be
pcl_mesh.polygon
andmesh.polygon
, instead of.cloud
.Similar thing is in indigo-devel 436:
https://github.com/ros-perception/pcl_conversions/blob/indigo-devel/include/pcl_conversions/pcl_conversions.h#L431-L437