summaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/code.google.com/p/draw2d/draw2d/vertex2d.go
diff options
context:
space:
mode:
Diffstat (limited to 'Godeps/_workspace/src/code.google.com/p/draw2d/draw2d/vertex2d.go')
-rw-r--r--Godeps/_workspace/src/code.google.com/p/draw2d/draw2d/vertex2d.go19
1 files changed, 0 insertions, 19 deletions
diff --git a/Godeps/_workspace/src/code.google.com/p/draw2d/draw2d/vertex2d.go b/Godeps/_workspace/src/code.google.com/p/draw2d/draw2d/vertex2d.go
deleted file mode 100644
index 4e4d4fd83..000000000
--- a/Godeps/_workspace/src/code.google.com/p/draw2d/draw2d/vertex2d.go
+++ /dev/null
@@ -1,19 +0,0 @@
-// Copyright 2010 The draw2d Authors. All rights reserved.
-// created: 21/11/2010 by Laurent Le Goff
-
-package draw2d
-
-type VertexCommand byte
-
-const (
- VertexNoCommand VertexCommand = iota
- VertexStartCommand
- VertexJoinCommand
- VertexCloseCommand
- VertexStopCommand
-)
-
-type VertexConverter interface {
- NextCommand(cmd VertexCommand)
- Vertex(x, y float64)
-}