Click or drag to resize

NodeEuclidianDistance Method

Returns the euclidian distance between two nodes : Sqrt(Dx²+Dy²+Dz²)

Namespace:  Pathfinding
Assembly:  RebornBuddy (in RebornBuddy.exe) Version: 3.3.1; net-4.5.win32; release
Syntax
C#
public static double EuclidianDistance(
	Node N1,
	Node N2
)

Parameters

N1
Type: PathfindingNode
First node.
N2
Type: PathfindingNode
Second node.

Return Value

Type: Double
Distance value.
See Also