float dot(vector2 a, vector2 b)
float dot(vector a, vector b)
float dot(vector4 a, vector4 b)
float dot(vector a, vector4 b)
float dot(vector4 a, vector b)
float dot(matrix2 a, matrix2 b)
float dot(matrix3 a, matrix3 b)
float dot(matrix a, matrix b)
2つの引数の 内積 を返します。
vector
とvector4
を内積する時は、最初の3つのコンポーネントのみが使用されます。
float dot(<type>a[], <type>b[])
int dot(int a[], int b[])
内積の合計(つまり、dot(a, b) = dot(a[0], b[0]) + ... + dot(a[n-1], b[n-1])
。n = min(len(a), len(b))
)を返します。
See also | |
math |
|
vector |