summaryrefslogtreecommitdiff
path: root/bezier_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'bezier_test.go')
-rw-r--r--bezier_test.go15
1 files changed, 0 insertions, 15 deletions
diff --git a/bezier_test.go b/bezier_test.go
deleted file mode 100644
index bb6774f..0000000
--- a/bezier_test.go
+++ /dev/null
@@ -1,15 +0,0 @@
-package main
-
-import "testing"
-
-func TestPowers(t *testing.T) {
- testCases := []float64{0.0, 0.25, 0.5, 0.75, 1.0}
- for _, tc := range testCases {
- t.Log(Power(tc))
- }
-}
-
-func TestT(t *testing.T) {
- t.Log(Mb)
- t.Log(Mb.T())
-}