David Thielemann 991f3184cc Updated tests for the int rather than int64 update | 1 năm trước cách đây | |
---|---|---|
LICENSE | 1 năm trước cách đây | |
README.md | 1 năm trước cách đây | |
go.mod | 1 năm trước cách đây | |
point.go | 1 năm trước cách đây | |
point_test.go | 1 năm trước cách đây |
A 2 dimensional Point.
Get it go get git.red-green.com/david/point2d
package main
import (
"fmt"
"git.red-green.com/david/point2d"
)
func main() {
var p *point2d.Point = new(point2d.Point)
fmt.Println(p) // Automatically calls p.String()
p.Set(3, 2) // Set's the Point's position to (3, 2)
if p.Equal(3, 2) {
fmt.Println("p is equal (3, 2)")
} else {
fmt.Println("p is not equal (3, 2), p is", p.String())
}
var p2 *point2d.Point = point2d.AsPoint(3, 9)
var dist int = p.DistanceTo(&p2)
fmt.Printf("p is %d away from p2\n", dist)
}