Skip to content

M_Rhino_Geometry_Vector2f_Multiply

Will Pearson edited this page Aug 12, 2016 · 1 revision

Vector2f.Multiply Method

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

Syntax

C#

public static double Multiply(
	Vector2f point1,
	Vector2f point2
)

VB

Public Shared Function Multiply ( 
	point1 As Vector2f,
	point2 As Vector2f
) As Double

Parameters

 

point1
Type: Rhino.Geometry.Vector2f
The first point.
point2
Type: Rhino.Geometry.Vector2f
The second point.

Return Value

Type: Double
A value that results from the coordinatewise multiplication of point1 and point2.

Version Information

Supported in: 6.0.16224.21491

See Also

Reference

Vector2f Structure
Rhino.Geometry Namespace

Clone this wiki locally