Struct XRPointCloudData
Represents the data (arrays of positions, confidence values, and identifiers) associated with a point cloud.
Namespace: UnityEngine.XR.ARSubsystems
Syntax
public struct XRPointCloudData : IEquatable<XRPointCloudData>, IDisposable
Properties
confidenceValues
Confidence values for each point in the point cloud. This array is parallel
to positions and identifiers.
Use confidenceValues.IsCreated
to check for existence.
Declaration
public NativeArray<float> confidenceValues { get; set; }
Property Value
Type | Description |
---|---|
NativeArray<Single> |
identifiers
Identifiers for each point in the point cloud. This array is parallel
to positions and confidenceValues.
Use identifiers.IsCreated
to check for existence.
Declaration
public NativeArray<ulong> identifiers { get; set; }
Property Value
Type | Description |
---|---|
NativeArray<UInt64> |
Remarks
Identifiers are unique to a particular session, which means you can use the identifier to match a particular point in the point cloud with a previously detected point.
positions
Positions for each point in the point cloud. This array is parallel
to confidenceValues and identifiers.
Use positions.IsCreated
to check for existence.
Declaration
public NativeArray<Vector3> positions { get; set; }
Property Value
Type | Description |
---|---|
NativeArray<Vector3> |
Methods
Dispose()
Disposes of the NativeArray
s, checking for existence first.
Declaration
public void Dispose()
Equals(Object)
Tests for equality.
Declaration
public override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
Object | obj | The |
Returns
Type | Description |
---|---|
Boolean |
|
Overrides
Equals(XRPointCloudData)
Tests for equality.
Declaration
public bool Equals(XRPointCloudData other)
Parameters
Type | Name | Description |
---|---|---|
XRPointCloudData | other | The other XRPointCloudData to compare against. |
Returns
Type | Description |
---|---|
Boolean |
|
GetHashCode()
Generates a hash suitable for use with containers like HashSet
and Dictionary
.
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
Int32 | A hash code generated from this object's fields. |
Overrides
ToString()
Generates a string representation of this XRPointCloudData.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
String | A string representation of this XRPointCloudData. |
Overrides
Operators
Equality(XRPointCloudData, XRPointCloudData)
Tests for equality. Same as Equals(XRPointCloudData).
Declaration
public static bool operator ==(XRPointCloudData lhs, XRPointCloudData rhs)
Parameters
Type | Name | Description |
---|---|---|
XRPointCloudData | lhs | The left-hand side of the comparison. |
XRPointCloudData | rhs | The right-hand side of the comparison. |
Returns
Type | Description |
---|---|
Boolean |
|
Inequality(XRPointCloudData, XRPointCloudData)
Tests for inequality. Same as !
Equals(XRPointCloudData).
Declaration
public static bool operator !=(XRPointCloudData lhs, XRPointCloudData rhs)
Parameters
Type | Name | Description |
---|---|---|
XRPointCloudData | lhs | The left-hand side of the comparison. |
XRPointCloudData | rhs | The right-hand side of the comparison. |
Returns
Type | Description |
---|---|
Boolean |
|