change import paths

This commit is contained in:
Alexander Weinhold 2018-12-06 16:57:29 +01:00
parent 1f5fe236d0
commit 075ec865cb
6 changed files with 9 additions and 9 deletions

View File

@ -2,7 +2,7 @@ package drawing
import (
"git.gutmet.org/golang-freetype.git/raster"
"golang.org/x/image/math/fixed"
"git.gutmet.org/golang-image.git/math/fixed"
)
// FtLineBuilder is a builder for freetype raster glyphs.

View File

@ -4,8 +4,8 @@ import (
"image"
"image/color"
"golang.org/x/image/draw"
"golang.org/x/image/math/f64"
"git.gutmet.org/golang-image.git/draw"
"git.gutmet.org/golang-image.git/math/f64"
"git.gutmet.org/golang-freetype.git/raster"
)

View File

@ -8,9 +8,9 @@ import (
"git.gutmet.org/golang-freetype.git/raster"
"git.gutmet.org/golang-freetype.git/truetype"
"golang.org/x/image/draw"
"golang.org/x/image/font"
"golang.org/x/image/math/fixed"
"git.gutmet.org/golang-image.git/draw"
"git.gutmet.org/golang-image.git/font"
"git.gutmet.org/golang-image.git/math/fixed"
)
// NewRasterGraphicContext creates a new Graphic context from an image.

View File

@ -2,7 +2,7 @@ package drawing
import (
"git.gutmet.org/golang-freetype.git/truetype"
"golang.org/x/image/math/fixed"
"git.gutmet.org/golang-image.git/math/fixed"
)
// DrawContour draws the given closed contour at the given sub-pixel offset.

View File

@ -3,7 +3,7 @@ package drawing
import (
"math"
"golang.org/x/image/math/fixed"
"git.gutmet.org/golang-image.git/math/fixed"
"git.gutmet.org/golang-freetype.git/raster"
"git.gutmet.org/golang-freetype.git/truetype"

View File

@ -7,7 +7,7 @@ import (
"math"
"strings"
"golang.org/x/image/font"
"git.gutmet.org/golang-image.git/font"
"git.gutmet.org/golang-freetype.git/truetype"
"git.gutmet.org/go-chart.git/drawing"