Namespace:  FlowMap
Assembly:  FlowMap (in FlowMap.dll)

Syntax

Visual Basic (Declaration)
Public Sub New ( _
	_start As Node, _
	_end As Node, _
	_weight As Single _
)
C#
public Edge(
	Node _start,
	Node _end,
	float _weight
)
Visual C++
public:
Edge(
	Node^ _start, 
	Node^ _end, 
	float _weight
)
JavaScript
FlowMap.Edge = function(_start, _end, _weight);

Parameters

_start
Type: FlowMap..::.Node
Start Node
_end
Type: FlowMap..::.Node
End Node
_weight
Type: System..::.Single
Weight

See Also