Description
Defines the properties of point cloud data.
Visual Basic
Public Enum PointCloudProperty Classification = 3 Color = 1 Intensity = 2 Normal = 4 End Enum
C#
public enum PointCloudProperty { Classification = 3, Color = 1, Intensity = 2, Normal = 4 }
Members
Members | Description |
---|---|
Classification = 3 | The classification property. |
Color = 1 | The color property. |
Intensity = 2 | The intensity property. |
Normal = 4 | The normal property. |