|
Britbot
|
Calculates the direction vector between two points.
Definition at line 215 of file HeadingVector.cs. {
//assigning new variable
return new HeadingVector(target.Col - source.Col, target.Row - source.Row);
}
|
1.7.6.1