293dd2e848
* Add vendor dir so builds dont require dep * Pin specific version go-eth version
14 lines
574 B
Go
Executable File
14 lines
574 B
Go
Executable File
// CookieJar - A contestant's algorithm toolbox
|
|
// Copyright (c) 2013 Peter Szilagyi. All rights reserved.
|
|
//
|
|
// CookieJar is dual licensed: use of this source code is governed by a BSD
|
|
// license that can be found in the LICENSE file. Alternatively, the CookieJar
|
|
// toolbox may be used in accordance with the terms and conditions contained
|
|
// in a signed written agreement between you and the author(s).
|
|
|
|
// Package geometry implements basic geometric types and operations on them.
|
|
package geometry
|
|
|
|
// Epsilon value for float equality comparison.
|
|
var eps = float64(1e-9)
|