MCPcopy Create free account
hub / github.com/andybarry/makerscanner / PointCloudPoint

Method PointCloudPoint

PointCloudPoint.cpp:22–34  ·  view source on GitHub ↗

copy constructor

Source from the content-addressed store, hash-verified

20
21// copy constructor
22PointCloudPoint::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)
37wxString PointCloudPoint::GetPlyString()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected