summaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/code.google.com/p/draw2d/draw2d/demux_converter.go
diff options
context:
space:
mode:
Diffstat (limited to 'Godeps/_workspace/src/code.google.com/p/draw2d/draw2d/demux_converter.go')
-rw-r--r--Godeps/_workspace/src/code.google.com/p/draw2d/draw2d/demux_converter.go23
1 files changed, 0 insertions, 23 deletions
diff --git a/Godeps/_workspace/src/code.google.com/p/draw2d/draw2d/demux_converter.go b/Godeps/_workspace/src/code.google.com/p/draw2d/draw2d/demux_converter.go
deleted file mode 100644
index b5c871d2c..000000000
--- a/Godeps/_workspace/src/code.google.com/p/draw2d/draw2d/demux_converter.go
+++ /dev/null
@@ -1,23 +0,0 @@
-// Copyright 2010 The draw2d Authors. All rights reserved.
-// created: 13/12/2010 by Laurent Le Goff
-
-package draw2d
-
-type DemuxConverter struct {
- converters []VertexConverter
-}
-
-func NewDemuxConverter(converters ...VertexConverter) *DemuxConverter {
- return &DemuxConverter{converters}
-}
-
-func (dc *DemuxConverter) NextCommand(cmd VertexCommand) {
- for _, converter := range dc.converters {
- converter.NextCommand(cmd)
- }
-}
-func (dc *DemuxConverter) Vertex(x, y float64) {
- for _, converter := range dc.converters {
- converter.Vertex(x, y)
- }
-}