Skip to content
This repository has been archived by the owner on Oct 11, 2023. It is now read-only.

bc0547b1 0b6f b21a b356 d1070905c3b9

haplokuon edited this page May 6, 2023 · 1 revision

Multiply(Vector3, Double) Operator

netDxf 3.0.0 Library

Multiplies a vector with an scalar (same as a*u, commutative property).

Definition

Namespace: netDxf
Assembly: netDxf (in netDxf.dll) Version: 3.0.0

C#

public static Vector3 operator *(
	Vector3 u,
	double a
)

VB

Public Shared Operator * ( 
	u As Vector3,
	a As Double
) As Vector3

C++

public:
static Vector3 operator *(
	Vector3 u, 
	double a
)

F#

static let inline (*)
        u : Vector3 * 
        a : float  : Vector3

Parameters

  Vector3
Vector3.
  Double
Scalar.

Return Value

Vector3
The multiplication of u times a.

See Also

Reference

Vector3 Structure
Multiply Overload
netDxf Namespace

Clone this wiki locally