Compute the sum of two 3D points

Namespace: Emgu.CV.Structure
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static MCvPoint3D64f operator +(
	MCvPoint3D64f p1,
	MCvPoint3D64f p2
)
Public Shared Operator + ( _
	p1 As MCvPoint3D64f, _
	p2 As MCvPoint3D64f _
) As MCvPoint3D64f
public:
static MCvPoint3D64f operator +(
	MCvPoint3D64f p1, 
	MCvPoint3D64f p2
)

Parameters

p1
MCvPoint3D64f
The first point to be added
p2
MCvPoint3D64f
The second point to be added

Return Value

The sum of two points

See Also