PointCloud constructor

PointCloud({
  1. Header? header,
  2. List<Point32>? points,
  3. List<ChannelFloat32>? channels,
})

Implementation

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