copy constructor
| 20 | |
| 21 | // copy constructor |
| 22 | PointCloudPoint::PointCloudPoint(PointCloudPoint *point) |
| 23 | { |
| 24 | dist = point->dist; |
| 25 | theta = point->theta; |
| 26 | phi = point->phi; |
| 27 | |
| 28 | r = point->r; |
| 29 | g = point->g; |
| 30 | b = point->b; |
| 31 | w = point->w; |
| 32 | h = point->h; |
| 33 | laserPosition = point->laserPosition; |
| 34 | } |
| 35 | |
| 36 | // Generates the point cloud string for this point (one line) |
| 37 | wxString PointCloudPoint::GetPlyString() |
nothing calls this directly
no outgoing calls
no test coverage detected