aboutsummaryrefslogtreecommitdiff
path: root/cutter.go
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2015-04-24 01:56:05 +0200
committerDimitri Sokolyuk <demon@dim13.org>2015-04-24 01:56:05 +0200
commit755d6bf4cd37843e830c2883a2af2c4e0391ea39 (patch)
tree233fba4f5aa38e3ed3757ba17f125384715ff957 /cutter.go
parent09059cd4febdd50e02879c815de9da2b018a8f53 (diff)
Line Scale
Diffstat (limited to 'cutter.go')
-rw-r--r--cutter.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/cutter.go b/cutter.go
index 27a6490..406648c 100644
--- a/cutter.go
+++ b/cutter.go
@@ -127,6 +127,11 @@ func (c Cutter) LineType(n LineStyle) {
fmt.Fprint(c, "L", n)
}
+func (c Cutter) LineScale(n int) {
+ defer c.EOT()
+ fmt.Fprint(c, "B", n)
+}
+
func (c Cutter) Factor(p, q, r int) {
defer c.EOT()
fmt.Fprintf(c, "&%v,%v,%v", p, q, r)