Adds a value to the RGB channels of a color and takes the result modulo 1

Namespace: VVVV.Utils.VColor
Assembly: VVVV.Utils (in VVVV.Utils.dll) Version: 1.0.4694.10871

Syntax

C#
public static RGBAColor Offset(
	RGBAColor Col,
	double Offset
)

Parameters

Col
Type: VVVV.Utils.VColor..::..RGBAColor

[Missing <param name="Col"/> documentation for "M:VVVV.Utils.VColor.VColor.Offset(VVVV.Utils.VColor.RGBAColor,System.Double)"]

Offset
Type: System..::..Double

[Missing <param name="Offset"/> documentation for "M:VVVV.Utils.VColor.VColor.Offset(VVVV.Utils.VColor.RGBAColor,System.Double)"]

Return Value

(Col.RGB + Offset) modulo 1

See Also