PointDotProduct Method (Point) |
Gets the dot product of this instance and the specified point
Namespace:
Eto.Drawing
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public int DotProduct(
Point point
)
Public Function DotProduct (
point As Point
) As Integer
member DotProduct :
point : Point -> int
Parameters
- point
- Type: Eto.DrawingPoint
Point to get the dot product for
Return Value
Type:
Int32The dot product (X * point.X + Y * point.Y) between this point and the specified point
See Also