aboutsummaryrefslogtreecommitdiff
path: root/misc.go
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2015-05-06 18:03:10 +0200
committerDimitri Sokolyuk <demon@dim13.org>2015-05-06 18:03:10 +0200
commitd3b053e57c9ee0acbf1479f706882ca06c76e6e2 (patch)
tree9b24e19912c0799b9cf96db79960772fbe685367 /misc.go
parent1d55c46df70b5843b7b6b80379dd5abcf80fe1fd (diff)
Move drawpic into pic.go
Diffstat (limited to 'misc.go')
-rw-r--r--misc.go9
1 files changed, 0 insertions, 9 deletions
diff --git a/misc.go b/misc.go
index 3366770..c271ce9 100644
--- a/misc.go
+++ b/misc.go
@@ -29,15 +29,6 @@ func (c Cutter) DrawCircles() {
}
}
-func (c Cutter) DrawPic() {
- for _, path := range parsePage() {
- c.Move(path[0])
- for _, p := range path[1:] {
- c.Draw(p)
- }
- }
-}
-
func (c Cutter) MustMarks(p Point) {
if !c.SearchMarks(p) {
log.Fatal("marks not found")