pointcloud.proto 179 B

12345678910111213
  1. syntax = "proto3";
  2. message PointType {
  3. float x = 1;
  4. float y = 2;
  5. float z = 3;
  6. }
  7. message PointcloudType {
  8. repeated PointType points = 1;
  9. uint64 index = 2;
  10. }