Scalar product between two vectors.

Namespace:  Hyleos.Common.Geometry
Assembly:  Hyleos.Common (in Hyleos.Common.dll) Version: 1.0.3.2 (1.0.3.2)

Syntax

C#
public static double operator |(
	Vector3D v1,
	Vector3D v2
)
Visual Basic (Declaration)
Public Shared Operator Or ( _
	v1 As Vector3D, _
	v2 As Vector3D _
) As Double
Visual C++
public:
static double operator |(
	Vector3D v1, 
	Vector3D v2
)

Parameters

v1
Type: Hyleos.Common.Geometry..::.Vector3D
First vector.
v2
Type: Hyleos.Common.Geometry..::.Vector3D
Second vector.

Return Value

Value resulting from the scalar product.

See Also