Construct a new Quad.

Namespace:  Sasa
Assembly:  Sasa (in Sasa.dll)

Syntax

Visual Basic (Declaration)
Public Sub New ( _
	first As T, _
	second As U, _
	third As V, _
	fourth As Q _
)
C#
public Quad(
	T first,
	U second,
	V third,
	Q fourth
)
Visual C++
public:
Quad(
	T first, 
	U second, 
	V third, 
	Q fourth
)
JavaScript
Sasa.Quad = function(first, second, third, fourth);

Parameters

first
Type: T
The first value.
second
Type: U
The second value.
third
Type: V
The third value.
fourth
Type: Q
The fourth value.

See Also