Method GetChanges
GetChanges(BoundedPlane, Allocator)
Gets a TrackableChanges<T> struct containing any changes to detected planes since the last
time you called this method. You are responsible to Dispose() the returned
TrackableChanges instance.
Declaration
public abstract TrackableChanges<BoundedPlane> GetChanges(BoundedPlane defaultPlane, Allocator allocator)
Parameters
| Type | Name | Description |
|---|---|---|
| BoundedPlane | defaultPlane | The default plane. You should use this to initialize the returned TrackableChanges<T> instance by passing it to the constructor TrackableChanges(int, int, int, Allocator, T). |
| Allocator | allocator | An |
Returns
| Type | Description |
|---|---|
| TrackableChanges<BoundedPlane> | The changes to planes since the last call to this method. |