aboutsummaryrefslogtreecommitdiff
path: root/plot_test.go
diff options
context:
space:
mode:
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))
+}