This is the multiply operator

Namespace:  GLSV
Assembly:  GLSV (in GLSV.dll) Version: 1.2009.6.26 (1.2009.06.26)

Syntax

C#
public static XY operator *(
	XY p,
	double z
)
Visual Basic (Declaration)
Public Shared Operator * ( _
	p As XY, _
	z As Double _
) As XY
Visual C++
public:
static XY^ operator *(
	XY^ p, 
	double z
)

Parameters

p
Type: GLSV..::.XY
A XY instance
z
Type: System..::.Double
the number to multiply

Return Value

A new instance of the class XY, results from the multiply of the instances

See Also