all: update imports to github.com/llgcode/draw2d
This commit is contained in:
parent
91cca64ef9
commit
7e968a713e
18 changed files with 24 additions and 24 deletions
6
README
6
README
|
@ -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]
|
||||
* 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]):
|
||||
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/TestDrawArc.png]
|
||||
|
|
|
@ -18,8 +18,8 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"code.google.com/p/draw2d/draw2dgl"
|
||||
"code.google.com/p/draw2d/postscript"
|
||||
"github.com/llgcode/draw2d/draw2dgl"
|
||||
"github.com/llgcode/draw2d/postscript"
|
||||
"gl"
|
||||
"glut"
|
||||
"io/ioutil"
|
||||
|
|
|
@ -9,7 +9,7 @@ import (
|
|||
"log"
|
||||
"os"
|
||||
|
||||
"code.google.com/p/draw2d/draw2d"
|
||||
"github.com/llgcode/draw2d/draw2d"
|
||||
"image"
|
||||
"image/png"
|
||||
)
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"code.google.com/p/draw2d/draw2d"
|
||||
"github.com/llgcode/draw2d/draw2d"
|
||||
"exp/gui"
|
||||
"exp/gui/x11"
|
||||
"fmt"
|
||||
|
|
|
@ -6,7 +6,7 @@ import (
|
|||
"log"
|
||||
"os"
|
||||
|
||||
"code.google.com/p/draw2d/draw2d"
|
||||
"github.com/llgcode/draw2d/draw2d"
|
||||
"image"
|
||||
"image/color"
|
||||
"image/png"
|
||||
|
|
|
@ -9,7 +9,7 @@ import (
|
|||
"log"
|
||||
"os"
|
||||
|
||||
"code.google.com/p/draw2d/draw2d"
|
||||
"github.com/llgcode/draw2d/draw2d"
|
||||
"image"
|
||||
"image/color"
|
||||
"image/png"
|
||||
|
|
|
@ -7,7 +7,7 @@ import (
|
|||
"math"
|
||||
"os"
|
||||
|
||||
"code.google.com/p/draw2d/draw2d"
|
||||
"github.com/llgcode/draw2d/draw2d"
|
||||
"image"
|
||||
"image/color"
|
||||
"image/png"
|
||||
|
|
|
@ -2,7 +2,7 @@ package main
|
|||
|
||||
import (
|
||||
"bufio"
|
||||
"code.google.com/p/draw2d/draw2d"
|
||||
"github.com/llgcode/draw2d/draw2d"
|
||||
"fmt"
|
||||
"image"
|
||||
"image/draw"
|
||||
|
|
|
@ -2,8 +2,8 @@ package main
|
|||
|
||||
import (
|
||||
"bufio"
|
||||
"code.google.com/p/draw2d/draw2d"
|
||||
"code.google.com/p/draw2d/postscript"
|
||||
"github.com/llgcode/draw2d/draw2d"
|
||||
"github.com/llgcode/draw2d/postscript"
|
||||
"fmt"
|
||||
"image"
|
||||
"image/png"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package main
|
||||
|
||||
import "code.google.com/p/draw2d/draw2d/curve"
|
||||
import "github.com/llgcode/draw2d/draw2d/curve"
|
||||
import "testing"
|
||||
import __os__ "os"
|
||||
import __regexp__ "regexp"
|
||||
|
|
|
@ -2,7 +2,7 @@ package curve
|
|||
|
||||
import (
|
||||
"bufio"
|
||||
"code.google.com/p/draw2d/draw2d/raster"
|
||||
"github.com/llgcode/draw2d/draw2d/raster"
|
||||
"fmt"
|
||||
"image"
|
||||
"image/color"
|
||||
|
|
|
@ -2,7 +2,7 @@ package raster
|
|||
|
||||
import (
|
||||
"bufio"
|
||||
"code.google.com/p/draw2d/draw2d/curve"
|
||||
"github.com/llgcode/draw2d/draw2d/curve"
|
||||
"code.google.com/p/freetype-go/freetype/raster"
|
||||
"image"
|
||||
"image/color"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package draw2dgl
|
||||
|
||||
import (
|
||||
"code.google.com/p/draw2d/draw2d"
|
||||
"github.com/llgcode/draw2d/draw2d"
|
||||
"code.google.com/p/freetype-go/freetype/raster"
|
||||
"gl"
|
||||
"image"
|
||||
|
|
|
@ -6,7 +6,7 @@ import (
|
|||
"log"
|
||||
"os"
|
||||
|
||||
"code.google.com/p/draw2d/draw2d"
|
||||
"github.com/llgcode/draw2d/draw2d"
|
||||
"image"
|
||||
"image/draw"
|
||||
"image/png"
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
package postscript
|
||||
|
||||
import (
|
||||
"code.google.com/p/draw2d/draw2d"
|
||||
"github.com/llgcode/draw2d/draw2d"
|
||||
"io"
|
||||
"log"
|
||||
"os"
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
package postscript
|
||||
|
||||
import (
|
||||
"code.google.com/p/draw2d/draw2d"
|
||||
"github.com/llgcode/draw2d/draw2d"
|
||||
"image/color"
|
||||
"log"
|
||||
"math"
|
||||
|
|
|
@ -5,7 +5,7 @@ import (
|
|||
"os"
|
||||
"syscall"
|
||||
"unsafe"
|
||||
. "code.google.com/p/draw2d/wingui"
|
||||
. "github.com/llgcode/draw2d/wingui"
|
||||
)
|
||||
|
||||
// some help functions
|
||||
|
|
|
@ -5,9 +5,9 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"code.google.com/p/draw2d/draw2d"
|
||||
"code.google.com/p/draw2d/wingui"
|
||||
"code.google.com/p/draw2d/postscript"
|
||||
"github.com/llgcode/draw2d/draw2d"
|
||||
"github.com/llgcode/draw2d/wingui"
|
||||
"github.com/llgcode/draw2d/postscript"
|
||||
"fmt"
|
||||
"image"
|
||||
"io/ioutil"
|
||||
|
|
Loading…
Reference in a new issue