Delegate Omnitree.GetBounds<T, A1, A2, A3, A4, A5, A6>
Delegate for getting the 6D bounding box of an item.
Namespace: Towel.DataStructures
Assembly: Towel.dll
Syntax
public delegate void GetBounds<T, A1, A2, A3, A4, A5, A6>(T item, out Omnitree.Bound<A1> min1, out Omnitree.Bound<A1> max1, out Omnitree.Bound<A2> min2, out Omnitree.Bound<A2> max2, out Omnitree.Bound<A3> min3, out Omnitree.Bound<A3> max3, out Omnitree.Bound<A4> min4, out Omnitree.Bound<A4> max4, out Omnitree.Bound<A5> min5, out Omnitree.Bound<A5> max5, out Omnitree.Bound<A6> min6, out Omnitree.Bound<A6> max6);
Parameters
Type | Name | Description |
---|---|---|
T | item | The item to get the bounding box of. |
Omnitree.Bound<A1> | min1 | The minimum bound of the item along the 1 dimension. |
Omnitree.Bound<A1> | max1 | The maximum bound of the item along the 1 dimension. |
Omnitree.Bound<A2> | min2 | The minimum bound of the item along the 2 dimension. |
Omnitree.Bound<A2> | max2 | The maximum bound of the item along the 2 dimension. |
Omnitree.Bound<A3> | min3 | The minimum bound of the item along the 3 dimension. |
Omnitree.Bound<A3> | max3 | The maximum bound of the item along the 3 dimension. |
Omnitree.Bound<A4> | min4 | The minimum bound of the item along the 4 dimension. |
Omnitree.Bound<A4> | max4 | The maximum bound of the item along the 4 dimension. |
Omnitree.Bound<A5> | min5 | The minimum bound of the item along the 5 dimension. |
Omnitree.Bound<A5> | max5 | The maximum bound of the item along the 5 dimension. |
Omnitree.Bound<A6> | min6 | The minimum bound of the item along the 6 dimension. |
Omnitree.Bound<A6> | max6 | The maximum bound of the item along the 6 dimension. |
Type Parameters
Name | Description |
---|---|
T | The generic type of the item to get the bounding box of. |
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. |