Difference between revisions of "DotProduct"

From scripting
Jump to: navigation, search
(Created page with " Function DotProduct(U, V) temp = U(0) * V(0) + U(1) * V(1) + U(2) * V(2) DotProduct = temp End Function Category:CATIA DP VB")
 
(No difference)

Latest revision as of 05:27, 22 April 2017

Function DotProduct(U, V)
temp = U(0) * V(0) + U(1) * V(1) + U(2) * V(2)
DotProduct = temp
End Function