Merge pull request #327 from arne-cl/patch-1

comment: Point is [lat lon z]
This commit is contained in:
Josh Baker 2018-07-28 07:14:26 -07:00 committed by GitHub
commit 18b19aec2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ import "fmt"
// Point is simple 2D point
type Point struct {
X, Y, Z float64
X, Y, Z float64 // X=latitude, Y=longitude, (Z is optional, e.g. for elevation or timestamp)
}
// InsideRect detects point is inside of another rect