interface IARPointCloud (Niantic.ARDK.AR.IARPointCloud)

Overview

Represents a point cloud. More…

interface IARPointCloud: IDisposable {
    // properties

    ReadOnlyCollection<UInt64> Identifiers;
    ReadOnlyCollection<Vector3> Points;
    float WorldScale;
};

Detailed Documentation

Represents a point cloud.

Properties

ReadOnlyCollection<UInt64> Identifiers

The collection of unique identifiers corresponding to detected feature points.

ReadOnlyCollection<Vector3> Points

The collection of detected points.

float WorldScale

The scaling factor applied to the point cloud’s points.