This commit is contained in:
Will Charczuk 2017-04-17 13:56:19 -07:00
parent 724d6e3c2a
commit 8c4ccc3bb6
3 changed files with 291 additions and 17 deletions

View file

@ -14,4 +14,4 @@ func (v Vector) DotProduct(v2 Vector) (result float64, err error) {
result = result + (v[i] * v2[i])
}
return
}
}