aboutsummaryrefslogtreecommitdiff
path: root/plot_test.go
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2016-09-24 15:02:34 +0200
committerDimitri Sokolyuk <demon@dim13.org>2016-09-24 15:02:34 +0200
commit9f6c4931ad33d1fe060328b2dba136f3d382e5b7 (patch)
treee1bd945000e83382b60312143d0b313ee33112cf /plot_test.go
parent13449c468512cd81ec5c05bf77655c22a17b39f0 (diff)
wip
Diffstat (limited to 'plot_test.go')
-rw-r--r--plot_test.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/plot_test.go b/plot_test.go
new file mode 100644
index 0000000..873a6d2
--- /dev/null
+++ b/plot_test.go
@@ -0,0 +1,11 @@
+package robo
+
+import "testing"
+
+func TestDraw(t *testing.T) {
+ p := Point{1, 3}
+ t.Log(Draw(p))
+ t.Log(Draw(p, p))
+ t.Log(Curve(10, p, p))
+ t.Log(Move(p))
+}