What does the multiply of vectors do?
Like if it were to be placed ona graph with the multiplication of the vectors what would the result of it be based off of mathematically.
As opposed to CFrames, where mutliplying is basically adding.. Multiplying vectors actually multiplies them, according to each X
, Y
, and Z
members of the Vectors you're multiplying.
print(Vector3.new(1,5,10) * Vector3.new(2,3,1)) --> 2, 15, 10 --[[ 1 * 2 = 2, 5 * 3 = 15, 10 * 1 = 10 ]]