Computes the dot product of two 3d vectors.

Namespace:  ceometric.VectorGeometry
Assembly:  ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.8.0.0 (1.8.0.0)

Syntax

C#
public static double operator *(
	Vector3d left,
	Vector3d right
)
Visual Basic (Declaration)
Public Shared Operator * ( _
	left As Vector3d, _
	right As Vector3d _
) As Double
Visual C++
public:
static double operator *(
	Vector3d^ left, 
	Vector3d^ right
)

Parameters

left
Type: ceometric.VectorGeometry..::.Vector3d
A first 3d vector.
right
Type: ceometric.VectorGeometry..::.Vector3d
A second 3d vector.

Return Value

Returns the dot product of two 3d vectors. See TensorProduct(Vector3d, Vector3d) for the tensor product of two 3d vectors.

See Also