diff --git a/draw2d/Makefile b/draw2d/Makefile index 2ea9829..036f105 100644 --- a/draw2d/Makefile +++ b/draw2d/Makefile @@ -2,6 +2,7 @@ include $(GOROOT)/src/Make.inc TARG=draw2d.googlecode.com/hg/draw2d GOFILES=\ + draw2d.go\ arc.go\ curves.go\ image.go\ diff --git a/draw2d/draw2d.go b/draw2d/draw2d.go new file mode 100644 index 0000000..60898c2 --- /dev/null +++ b/draw2d/draw2d.go @@ -0,0 +1,5 @@ +// Copyright 2011 The draw2d Authors. All rights reserved. +// created: 29/09/2011 by Laurent Le Goff + +// The package draw2d provide a Graphic Context that can draw vectorial figure on surface. +package draw2d