syntax = "proto3"; message PointType { float x = 1; float y = 2; float z = 3; } message PointcloudType { repeated PointType points = 1; uint64 index = 2; }