Used to calculate the slice count if two spreads need to be iterated.

Namespace: VVVV.PluginInterfaces.V2
Assembly: VVVV.PluginInterfaces (in VVVV.PluginInterfaces.dll) Version: 2.0.4694.10872

Syntax

C#
public static int CombineSpreads(
	this int c1,
	int c2
)

Parameters

c1
Type: System..::..Int32
Slice count 1.
c2
Type: System..::..Int32
Slice count 2.

Return Value

Maximum of c1 and c2 if c1 greater 0 and c2 greater 0; otherwise, 0.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Int32. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .

See Also