Delegate Omnitree.Location<T, A1, A2>
Delegate for locating an item in 2D space.
Namespace: Towel.DataStructures
Assembly: Towel.dll
Syntax
public delegate void Location<T, A1, A2>(T item, out A1 axis1, out A2 axis2);
Parameters
Type | Name | Description |
---|---|---|
T | item | The item to locate. |
A1 | axis1 | The location of the item along the 1 dimension. |
A2 | axis2 | The location of the item along the 2 dimension. |
Type Parameters
Name | Description |
---|---|
T | The generic type of the item to locate. |
A1 | The generic type of the 1 dimension. |
A2 | The generic type of the 2 dimension. |