Delegate Omnitree.Location<T, A1, A2, A3, A4, A5, A6>
Delegate for locating an item in 6D space.
Namespace: Towel.DataStructures
Assembly: Towel.dll
Syntax
public delegate void Location<T, A1, A2, A3, A4, A5, A6>(T item, out A1 axis1, out A2 axis2, out A3 axis3, out A4 axis4, out A5 axis5, out A6 axis6);
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. |
A3 | axis3 | The location of the item along the 3 dimension. |
A4 | axis4 | The location of the item along the 4 dimension. |
A5 | axis5 | The location of the item along the 5 dimension. |
A6 | axis6 | The location of the item along the 6 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. |
A3 | The generic type of the 3 dimension. |
A4 | The generic type of the 4 dimension. |
A5 | The generic type of the 5 dimension. |
A6 | The generic type of the 6 dimension. |