|
ColorRangemixedColor Method
|
returns the mix between two colors
Namespace:
Karamba.Utilities
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static Color mixedColor(
Color c1,
Color c2,
double p
)
Public Shared Function mixedColor (
c1 As Color,
c2 As Color,
p As Double
) As Color
public:
static Color mixedColor(
Color c1,
Color c2,
double p
)
static member mixedColor :
c1 : Color *
c2 : Color *
p : float -> Color
Parameters
- c1
- Type: System.DrawingColor
first color - c2
- Type: System.DrawingColor
second color - p
- Type: SystemDouble
mixing parameter: 0...first color; 1...second color
Return Value
Type:
Color[Missing <returns> documentation for "M:Karamba.Utilities.ColorRange.mixedColor(System.Drawing.Color,System.Drawing.Color,System.Double)"]
See Also