all: update imports to github.com/llgcode/draw2d

This commit is contained in:
Sebastien Binet 2015-04-16 11:40:22 +02:00
parent 91cca64ef9
commit 7e968a713e
18 changed files with 24 additions and 24 deletions

6
README
View file

@ -13,12 +13,12 @@ Once you have Go installed, to install draw2d:
* First see the installation procedure of [http://code.google.com/p/freetype-go/ freetype-go] * First see the installation procedure of [http://code.google.com/p/freetype-go/ freetype-go]
* goinstall draw2d.googlecode.com/svn/trunk/draw2d/src/pkg/draw2d * goinstall draw2d.googlecode.com/svn/trunk/draw2d/src/pkg/draw2d
a good starting point is the [http://code.google.com/p/draw2d/wiki/GettingStarted getting started] a good starting point is the [http://github.com/llgcode/draw2d/wiki/GettingStarted getting started]
=== [http://code.google.com/p/draw2d/wiki/Samples Samples] === === [http://github.com/llgcode/draw2d/wiki/Samples Samples] ===
Sample images generated by draw2d (inspired by [http://cairographics.org/samples/ cairo samples]): Sample images generated by draw2d (inspired by [http://cairographics.org/samples/ cairo samples]):
there's already some bugs please refer to [http://code.google.com/p/draw2d/issues/list issue tracking] there's already some bugs please refer to [http://github.com/llgcode/draw2d/issues/list issue tracking]
[http://draw2d.googlecode.com/svn/wiki/test_results/TestPath.png] [http://draw2d.googlecode.com/svn/wiki/test_results/TestPath.png]
[http://draw2d.googlecode.com/svn/wiki/test_results/TestDrawArc.png] [http://draw2d.googlecode.com/svn/wiki/test_results/TestDrawArc.png]

View file

@ -18,8 +18,8 @@
package main package main
import ( import (
"code.google.com/p/draw2d/draw2dgl" "github.com/llgcode/draw2d/draw2dgl"
"code.google.com/p/draw2d/postscript" "github.com/llgcode/draw2d/postscript"
"gl" "gl"
"glut" "glut"
"io/ioutil" "io/ioutil"

View file

@ -9,7 +9,7 @@ import (
"log" "log"
"os" "os"
"code.google.com/p/draw2d/draw2d" "github.com/llgcode/draw2d/draw2d"
"image" "image"
"image/png" "image/png"
) )

View file

@ -1,7 +1,7 @@
package main package main
import ( import (
"code.google.com/p/draw2d/draw2d" "github.com/llgcode/draw2d/draw2d"
"exp/gui" "exp/gui"
"exp/gui/x11" "exp/gui/x11"
"fmt" "fmt"

View file

@ -6,7 +6,7 @@ import (
"log" "log"
"os" "os"
"code.google.com/p/draw2d/draw2d" "github.com/llgcode/draw2d/draw2d"
"image" "image"
"image/color" "image/color"
"image/png" "image/png"

View file

@ -9,7 +9,7 @@ import (
"log" "log"
"os" "os"
"code.google.com/p/draw2d/draw2d" "github.com/llgcode/draw2d/draw2d"
"image" "image"
"image/color" "image/color"
"image/png" "image/png"

View file

@ -7,7 +7,7 @@ import (
"math" "math"
"os" "os"
"code.google.com/p/draw2d/draw2d" "github.com/llgcode/draw2d/draw2d"
"image" "image"
"image/color" "image/color"
"image/png" "image/png"

View file

@ -2,7 +2,7 @@ package main
import ( import (
"bufio" "bufio"
"code.google.com/p/draw2d/draw2d" "github.com/llgcode/draw2d/draw2d"
"fmt" "fmt"
"image" "image"
"image/draw" "image/draw"

View file

@ -2,8 +2,8 @@ package main
import ( import (
"bufio" "bufio"
"code.google.com/p/draw2d/draw2d" "github.com/llgcode/draw2d/draw2d"
"code.google.com/p/draw2d/postscript" "github.com/llgcode/draw2d/postscript"
"fmt" "fmt"
"image" "image"
"image/png" "image/png"

View file

@ -1,6 +1,6 @@
package main package main
import "code.google.com/p/draw2d/draw2d/curve" import "github.com/llgcode/draw2d/draw2d/curve"
import "testing" import "testing"
import __os__ "os" import __os__ "os"
import __regexp__ "regexp" import __regexp__ "regexp"

View file

@ -2,7 +2,7 @@ package curve
import ( import (
"bufio" "bufio"
"code.google.com/p/draw2d/draw2d/raster" "github.com/llgcode/draw2d/draw2d/raster"
"fmt" "fmt"
"image" "image"
"image/color" "image/color"

View file

@ -2,7 +2,7 @@ package raster
import ( import (
"bufio" "bufio"
"code.google.com/p/draw2d/draw2d/curve" "github.com/llgcode/draw2d/draw2d/curve"
"code.google.com/p/freetype-go/freetype/raster" "code.google.com/p/freetype-go/freetype/raster"
"image" "image"
"image/color" "image/color"

View file

@ -1,7 +1,7 @@
package draw2dgl package draw2dgl
import ( import (
"code.google.com/p/draw2d/draw2d" "github.com/llgcode/draw2d/draw2d"
"code.google.com/p/freetype-go/freetype/raster" "code.google.com/p/freetype-go/freetype/raster"
"gl" "gl"
"image" "image"

View file

@ -6,7 +6,7 @@ import (
"log" "log"
"os" "os"
"code.google.com/p/draw2d/draw2d" "github.com/llgcode/draw2d/draw2d"
"image" "image"
"image/draw" "image/draw"
"image/png" "image/png"

View file

@ -4,7 +4,7 @@
package postscript package postscript
import ( import (
"code.google.com/p/draw2d/draw2d" "github.com/llgcode/draw2d/draw2d"
"io" "io"
"log" "log"
"os" "os"

View file

@ -5,7 +5,7 @@
package postscript package postscript
import ( import (
"code.google.com/p/draw2d/draw2d" "github.com/llgcode/draw2d/draw2d"
"image/color" "image/color"
"log" "log"
"math" "math"

View file

@ -5,7 +5,7 @@ import (
"os" "os"
"syscall" "syscall"
"unsafe" "unsafe"
. "code.google.com/p/draw2d/wingui" . "github.com/llgcode/draw2d/wingui"
) )
// some help functions // some help functions

View file

@ -5,9 +5,9 @@
package main package main
import ( import (
"code.google.com/p/draw2d/draw2d" "github.com/llgcode/draw2d/draw2d"
"code.google.com/p/draw2d/wingui" "github.com/llgcode/draw2d/wingui"
"code.google.com/p/draw2d/postscript" "github.com/llgcode/draw2d/postscript"
"fmt" "fmt"
"image" "image"
"io/ioutil" "io/ioutil"