Dot product
Performs the dot product of two vectors.
Inputs
- 
vector 1
- The first vector value to perform the function on.
 
 - 
vector 2
- The second vector value to perform the function on.
 
 
Outputs
- 
result
- The dot product of the input vectors.
 
 - 
result list
- The list of dot products of the input vectors.
 
 
Note(s)
- 
The dot product is the sum of two vectors’ components (x, y, and z values) that have been multiplied together. This results in a single number value.
 - 
Other names for this node include: Dot.