PointCloud constructor
PointCloud({
- Header? header,
- List<
Point32> ? points, - List<
ChannelFloat32> ? channels,
Implementation
PointCloud({
Header? header,
List<Point32>? points,
List<ChannelFloat32>? channels,
}):
this.header = header ?? Header(),
this.points = points ?? [],
this.channels = channels ?? [];