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, 15 insertions, 0 deletions
diff --git a/bezier_test.go b/bezier_test.go
new file mode 100644
index 0000000..bb6774f
--- /dev/null
+++ b/bezier_test.go
@@ -0,0 +1,15 @@
+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())
+}