summaryrefslogtreecommitdiff
path: root/bezier_test.go
blob: bb6774f831371e8b0e420b487d035f503a426e94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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())
}