PointFDotProduct Method (PointF) | 
 
            Gets the dot product of this instance and the specified point
 
    Namespace: 
   Eto.Drawing
    Assembly:
   Eto (in Eto.dll) Version: 2.5.3-dev
Syntaxpublic float DotProduct(
	PointF point
)
Public Function DotProduct ( 
	point As PointF
) As Single
member DotProduct : 
        point : PointF -> float32 
Parameters
- point
 - Type: Eto.DrawingPointF
Point to get the dot product for 
Return Value
Type: 
SingleThe dot product (X * point.X + Y * point.Y) between this point and the specified point
See Also