spatial/r2: implement Vec.Dot

This commit is contained in:
Sebastien Binet
2020-03-25 16:31:48 +01:00
parent 2bf4f914ae
commit 20922778c8
2 changed files with 40 additions and 0 deletions

View File

@@ -77,3 +77,38 @@ func TestScale(t *testing.T) {
})
}
}
func TestDot(t *testing.T) {
for _, test := range []struct {
u, v Vec
want float64
}{
{Vec{1, 2}, Vec{1, 2}, 5},
{Vec{1, 0}, Vec{1, 0}, 1},
{Vec{1, 0}, Vec{0, 1}, 0},
{Vec{1, 0}, Vec{0, 1}, 0},
{Vec{1, 1}, Vec{-1, -1}, -2},
{Vec{1, 2}, Vec{-0.3, 0.4}, 0.5},
} {
t.Run("", func(t *testing.T) {
{
got := test.u.Dot(test.v)
if got != test.want {
t.Fatalf(
"error: %v · %v: got=%v, want=%v",
test.u, test.v, got, test.want,
)
}
}
{
got := test.v.Dot(test.u)
if got != test.want {
t.Fatalf(
"error: %v · %v: got=%v, want=%v",
test.v, test.u, got, test.want,
)
}
}
})
}
}