Zeroes out the height when testing exact distances.

pull/1331/head
James Phillips 2015-10-15 16:14:06 -07:00
parent 384d99677d
commit 80d5a3029f
1 changed files with 1 additions and 0 deletions

View File

@ -20,6 +20,7 @@ import (
func generateCoordinate(rtt time.Duration) *coordinate.Coordinate {
coord := coordinate.NewCoordinate(coordinate.DefaultConfig())
coord.Vec[0] = rtt.Seconds()
coord.Height = 0
return coord
}