M_Rhino_Geometry_Vector2f_Multiply - mcneel/rhinocommon-api-docs GitHub Wiki
Multiplies two Vector2f together, returning the dot (internal) product of the two. (Provided for languages that do not support operator overloading. You can use the * operator otherwise)
Namespace: Rhino.Geometry
Assembly: RhinoCommon (in RhinoCommon.dll) Version: Rhino 6.0
C#
public static double Multiply(
Vector2f point1,
Vector2f point2
)VB
Public Shared Function Multiply (
point1 As Vector2f,
point2 As Vector2f
) As Double
- point1
- Type: Rhino.Geometry.Vector2f
The first point. - point2
- Type: Rhino.Geometry.Vector2f
The second point.
Type: Double
A value that results from the coordinatewise multiplication of point1 and point2.
Supported in: 6.0.16224.21491