mirror of
https://github.com/gonum/gonum.git
synced 2025-10-05 15:16:59 +08:00

* 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.
11 lines
256 B
Go
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
|
|
}
|