CADability dotNET
Calculates the scalar product (dot product, inner product) of the two given vectors

Namespace: CADability
Assembly: CADability (in CADability.dll) Version: 1.1.4254.24737 (1.1.*)

Syntax

C#
public static double operator *(
	GeoVector v1,
	GeoVector v2
)
Visual Basic
Public Shared Operator * ( _
	v1 As GeoVector, _
	v2 As GeoVector _
) As Double
Visual C++
public:
static double operator *(
	GeoVector v1, 
	GeoVector v2
)

Parameters

v1
Type: CADability..::..GeoVector
first vector
v2
Type: CADability..::..GeoVector
second vector

Return Value

the scalar product

See Also