Vector::Multiply Operator (Vector, Vector)
.NET Framework (current version)
Calculates the dot product of the two specified vector structures and returns the result as a Double.
Assembly: WindowsBase (in WindowsBase.dll)
Parameters
- vector1
-
Type:
System.Windows::Vector
The first vector to multiply.
- vector2
-
Type:
System.Windows::Vector
The second vector to multiply.
Return Value
Type: System::DoubleReturns a Double containing the scalar dot product of vector1 and vector2, which is calculated using the following formula:
vector1.X * vector2.X + vector1.Y * vector2.Y
.NET Framework
Available since 3.0
Available since 3.0
Show: