change paths

This commit is contained in:
Alexander Weinhold 2018-12-06 17:08:43 +01:00
parent 63932d6d79
commit cf372a053c
10 changed files with 14 additions and 14 deletions

View File

@ -9,7 +9,7 @@ import (
"fmt"
"math"
"golang.org/x/image/math/fixed"
"git.gutmet.org/golang-image.git/math/fixed"
)
// maxAbs returns the maximum of abs(a) and abs(b).

View File

@ -18,7 +18,7 @@ package raster // import "git.gutmet.org/golang-freetype.git/raster"
import (
"strconv"
"golang.org/x/image/math/fixed"
"git.gutmet.org/golang-image.git/math/fixed"
)
// A cell is part of a linked list (for a given yi co-ordinate) of accumulated

View File

@ -6,7 +6,7 @@
package raster
import (
"golang.org/x/image/math/fixed"
"git.gutmet.org/golang-image.git/math/fixed"
)
// Two points are considered practically equal if the square of the distance

View File

@ -10,8 +10,8 @@ import (
"math"
"git.gutmet.org/golang-freetype.git/raster"
"golang.org/x/image/font"
"golang.org/x/image/math/fixed"
"git.gutmet.org/golang-image.git/font"
"git.gutmet.org/golang-image.git/math/fixed"
)
func powerOf2(i int) bool {

View File

@ -12,8 +12,8 @@ import (
"strings"
"testing"
"golang.org/x/image/font"
"golang.org/x/image/math/fixed"
"git.gutmet.org/golang-image.git/font"
"git.gutmet.org/golang-image.git/math/fixed"
)
func BenchmarkDrawString(b *testing.B) {

View File

@ -6,8 +6,8 @@
package truetype
import (
"golang.org/x/image/font"
"golang.org/x/image/math/fixed"
"git.gutmet.org/golang-image.git/font"
"git.gutmet.org/golang-image.git/math/fixed"
)
// TODO: implement VerticalHinting.

View File

@ -12,7 +12,7 @@ import (
"errors"
"math"
"golang.org/x/image/math/fixed"
"git.gutmet.org/golang-image.git/math/fixed"
)
const (

View File

@ -10,7 +10,7 @@ import (
"strings"
"testing"
"golang.org/x/image/math/fixed"
"git.gutmet.org/golang-image.git/math/fixed"
)
func TestBytecode(t *testing.T) {

View File

@ -20,7 +20,7 @@ package truetype // import "git.gutmet.org/golang-freetype.git/truetype"
import (
"fmt"
"golang.org/x/image/math/fixed"
"git.gutmet.org/golang-image.git/math/fixed"
)
// An Index is a Font's index of a rune.

View File

@ -15,8 +15,8 @@ import (
"strings"
"testing"
"golang.org/x/image/font"
"golang.org/x/image/math/fixed"
"git.gutmet.org/golang-image.git/font"
"git.gutmet.org/golang-image.git/math/fixed"
)
func parseTestdataFont(name string) (f *Font, testdataIsOptional bool, err error) {