Struct XRPointCloudData
Represents the data (arrays of positions, confidence values, and identifiers) associated with a point cloud.
Inherited Members
Namespace: UnityEngine.XR.ARSubsystems
Assembly: solution.dll
Syntax
public struct XRPointCloudData : IEquatable<XRPointCloudData>, IDisposable
Properties
Name | Description |
---|---|
confidenceValues | Confidence values for each point in the point cloud. This array is parallel
to positions and identifiers.
Use |
identifiers | Identifiers for each point in the point cloud. This array is parallel
to positions and confidenceValues.
Use |
positions | Positions for each point in the point cloud. This array is parallel
to confidenceValues and identifiers.
Use |
Methods
Name | Description |
---|---|
Dispose() | Checks for the existence of the |
Equals(object) | Tests for equality. |
Equals(XRPointCloudData) | Tests for equality. |
GetHashCode() | Generates a hash suitable for use with containers like |
ToString() | Generates a string representation of this XRPointCloudData. |
Operators
Name | Description |
---|---|
operator ==(XRPointCloudData, XRPointCloudData) | Tests for equality. Same as Equals(XRPointCloudData). |
operator !=(XRPointCloudData, XRPointCloudData) | Tests for inequality. Same as |