C# Class ModernizedAlice.ShosenColorPicker.Model.HsvColor

HSV (HSB) カラーを表す
Afficher le fichier Open project: kienaiProject/ArtOfWords Class Usage Examples

Méthodes publiques

Méthode Description
FromRgb ( Color rgb ) : HsvColor

指定したColorからHsvColorを作成する

HsvColor ( float hue, float saturation, float brightness ) : System
ToRgb ( HsvColor hsv ) : Color

指定したHsvColorからColorを作成する

Method Details

FromRgb() public static méthode

指定したColorからHsvColorを作成する
public static FromRgb ( Color rgb ) : HsvColor
rgb Color Color
Résultat HsvColor

HsvColor() public méthode

public HsvColor ( float hue, float saturation, float brightness ) : System
hue float
saturation float
brightness float
Résultat System

ToRgb() public static méthode

指定したHsvColorからColorを作成する
public static ToRgb ( HsvColor hsv ) : Color
hsv HsvColor HsvColor
Résultat Color