Change import paths

This commit is contained in:
Hamcha 2018-11-14 10:38:19 +01:00
parent e2365dfdc4
commit 1d07a50459
Signed by: hamcha
GPG Key ID: A40413D21021EAEE
12 changed files with 14 additions and 14 deletions

View File

@ -21,7 +21,7 @@ import (
"log"
"os"
"github.com/golang/freetype/raster"
"git.fromouter.space/crunchy-rocks/freetype/raster"
"golang.org/x/image/math/fixed"
)

View File

@ -24,7 +24,7 @@ import (
"math"
"os"
"github.com/golang/freetype/truetype"
"git.fromouter.space/crunchy-rocks/freetype/truetype"
"golang.org/x/image/font"
"golang.org/x/image/math/fixed"
)

View File

@ -23,7 +23,7 @@ import (
"log"
"os"
"github.com/golang/freetype"
"git.fromouter.space/crunchy-rocks/freetype"
"golang.org/x/image/font"
)

View File

@ -20,7 +20,7 @@ import (
"log"
"os"
"github.com/golang/freetype/raster"
"git.fromouter.space/crunchy-rocks/freetype/raster"
"golang.org/x/image/math/fixed"
)

View File

@ -26,7 +26,7 @@ import (
"strings"
"unicode"
"github.com/golang/freetype/truetype"
"git.fromouter.space/crunchy-rocks/freetype/truetype"
"golang.org/x/image/font"
"golang.org/x/image/math/fixed"
)

View File

@ -21,7 +21,7 @@ import (
"log"
"os"
"github.com/golang/freetype/raster"
"git.fromouter.space/crunchy-rocks/freetype/raster"
"golang.org/x/image/math/fixed"
)

View File

@ -27,7 +27,7 @@ import (
"math"
"os"
"github.com/golang/freetype/raster"
"git.fromouter.space/crunchy-rocks/freetype/raster"
"golang.org/x/image/math/fixed"
)

View File

@ -17,7 +17,7 @@ import (
"io/ioutil"
"log"
"github.com/golang/freetype/truetype"
"git.fromouter.space/crunchy-rocks/freetype/truetype"
"golang.org/x/image/font"
"golang.org/x/image/math/fixed"
)

View File

@ -6,15 +6,15 @@
// The freetype package provides a convenient API to draw text onto an image.
// Use the freetype/raster and freetype/truetype packages for lower level
// control over rasterization and TrueType parsing.
package freetype // import "github.com/golang/freetype"
package freetype // import "git.fromouter.space/crunchy-rocks/freetype"
import (
"errors"
"image"
"image/draw"
"github.com/golang/freetype/raster"
"github.com/golang/freetype/truetype"
"git.fromouter.space/crunchy-rocks/freetype/raster"
"git.fromouter.space/crunchy-rocks/freetype/truetype"
"golang.org/x/image/font"
"golang.org/x/image/math/fixed"
)

View File

@ -13,7 +13,7 @@
// the Freetype "smooth" module, and the Anti-Grain Geometry library. A
// description of the area/coverage algorithm is at
// http://projects.tuxee.net/cl-vectors/section-the-cl-aa-algorithm
package raster // import "github.com/golang/freetype/raster"
package raster // import "git.fromouter.space/crunchy-rocks/freetype/raster"
import (
"strconv"

View File

@ -9,7 +9,7 @@ import (
"image"
"math"
"github.com/golang/freetype/raster"
"git.fromouter.space/crunchy-rocks/freetype/raster"
"golang.org/x/image/font"
"golang.org/x/image/math/fixed"
)

View File

@ -15,7 +15,7 @@
//
// To measure a TrueType font in ideal FUnit space, use scale equal to
// font.FUnitsPerEm().
package truetype // import "github.com/golang/freetype/truetype"
package truetype // import "git.fromouter.space/crunchy-rocks/freetype/truetype"
import (
"fmt"