package land
type Vector2D struct {
X, Y float64
}
func (p Vector2D) IsZero() bool {
return p.X == 0 && p.Y == 0