Files
gonum/spatial/r1/interval.go
Sebastien Binet 5c77642844 spatial/r1: import and rename from bound
* spatial/r1: import and rename from bound

Mechanically generated with:

 $> gomvpkg -from gonum.org/v1/gonum/bound -to gonum.org/v1/gonum/spatial/r1 -vcs_mv_cmd "git mv {{.Src}} {{.Dst}}"

Fixes #956.
2019-06-21 13:49:53 +02:00

11 lines
256 B
Go

// Copyright ©2019 The Gonum Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package r1
// Interval represents an interval.
type Interval struct {
Min, Max float64
}