|
Britbot
|
extention method calculating the square of the euclidian distance between two locations
Definition at line 51 of file Extentions.cs. {
return Math.Pow(loc1.Col - loc2.Col, 2) + Math.Pow(loc1.Row - loc2.Row, 2);
}
|
1.7.6.1