|
ColorRangemixedColor Method
|
Get the mix between two colors.
Namespace:
Karamba.Utilities
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
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:
ColorMixed color.
See Also