Delegate for coordinate retrieval.
Namespace:
Grasshopper.Kernel.Geometry.SpatialTrees
Assembly:
Grasshopper (in Grasshopper.dll)
Syntax public delegate void Coordinates3d<T>(
T element,
out double x,
out double y,
out double z
)
Public Delegate Sub Coordinates3d(Of T) (
element As T,
<OutAttribute> ByRef x As Double,
<OutAttribute> ByRef y As Double,
<OutAttribute> ByRef z As Double
)
Parameters
- element
- Type: T
Element to retrieve coordinates from. - x
- Type: SystemDouble
X coordinate of element. - y
- Type: SystemDouble
Y coordinate of element. - z
- Type: SystemDouble
Z coordinate of element.
Type Parameters
- T
- Element type.
See Also