summaryrefslogtreecommitdiff
path: root/vendor/github.com/fogleman/gg/examples/linewidth.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/fogleman/gg/examples/linewidth.go')
-rw-r--r--vendor/github.com/fogleman/gg/examples/linewidth.go19
1 files changed, 19 insertions, 0 deletions
diff --git a/vendor/github.com/fogleman/gg/examples/linewidth.go b/vendor/github.com/fogleman/gg/examples/linewidth.go
new file mode 100644
index 0000000..8cdfdca
--- /dev/null
+++ b/vendor/github.com/fogleman/gg/examples/linewidth.go
@@ -0,0 +1,19 @@
+package main
+
+import "github.com/fogleman/gg"
+
+func main() {
+ dc := gg.NewContext(1000, 1000)
+ dc.SetRGB(1, 1, 1)
+ dc.Clear()
+ dc.SetRGB(0, 0, 0)
+ w := 0.1
+ for i := 100; i <= 900; i += 20 {
+ x := float64(i)
+ dc.DrawLine(x+50, 0, x-50, 1000)
+ dc.SetLineWidth(w)
+ dc.Stroke()
+ w += 0.1
+ }
+ dc.SavePNG("out.png")
+}