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]
|
* 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]
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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"
|
||||||
)
|
)
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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"
|
||||||
|
|
Loading…
Reference in a new issue