summaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/code.google.com/p/draw2d/draw2d/vertex2d.go
diff options
context:
space:
mode:
authorJoramWilander <jwawilander@gmail.com>2015-06-22 15:11:20 -0400
committerJoramWilander <jwawilander@gmail.com>2015-06-22 15:11:20 -0400
commit012ff506ecce1731819f7a9e149e60f6913a8d49 (patch)
treef17fa6cbec9b3c8029314da290dbbe2b5424fb15 /Godeps/_workspace/src/code.google.com/p/draw2d/draw2d/vertex2d.go
parentb02936492e57a53891f9031f9a4b200d634957f8 (diff)
downloadchat-012ff506ecce1731819f7a9e149e60f6913a8d49.tar.gz
chat-012ff506ecce1731819f7a9e149e60f6913a8d49.tar.bz2
chat-012ff506ecce1731819f7a9e149e60f6913a8d49.zip
fixes mm-1320 removes freetype libs and only use solid color for generated profile pics
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)
-}