Sum the current point with another point and returns the result

C# | Visual Basic | Visual C++ |
public Point<T> Add<TOther>( Point<TOther> other ) where TOther : new(), IComparable
Public Function Add(Of TOther As {New, IComparable}) ( _ other As Point(Of TOther) _ ) As Point(Of T)
public: generic<typename TOther> where TOther : gcnew(), IComparable Point<T>^ Add( Point<TOther>^ other )

- TOther
[Missing <typeparam name="TOther"/> documentation for "M:Emgu.CV.Point`1.Add``1(Emgu.CV.Point{``0})"]

- other (Point<(Of <(TOther>)>))
[Missing <param name="other"/> documentation for "M:Emgu.CV.Point`1.Add``1(Emgu.CV.Point{``0})"]

[Missing <returns> documentation for M:Emgu.CV.Point`1.Add``1(Emgu.CV.Point{``0})]