Enum PointColorType
Declares valid data types for a point cloud's per point color data.
Namespace: Fusee.PointCloud.Common.Accessors
Assembly: Fusee.PointCloud.Common.dll
Syntax
public enum PointColorType
Fields
Name | Description |
---|---|
Byte | A point cloud point has a color value of type System.Byte. |
Double | A point cloud point has a color value of type System.Double. |
Double3 | A point cloud point has a color value of type double3. |
Float | A point cloud point has a color value of type System.Single. |
Float3 | A point cloud point has a color value of type float3. |
Int | A point cloud point has a color value of type System.Int32. |
Long | A point cloud point has a color value of type System.Int64. |
None | A point cloud point without a color value. |
SByte | A point cloud point has a color value of type System.SByte. |
Short | A point cloud point has a color value of type System.Int16. |
Uint | A point cloud point has a color value of type System.UInt32. |
Ulong | A point cloud point has a color value of type System.UInt64. |
Ushort | A point cloud point has a color value of type System.UInt16. |