C# 클래스 entity.MetaEditor2.ColorHandler.RGB

Handle conversions between RGB and HSV (and Color types, as well).
파일 보기 프로젝트 열기: troymac1ure/Entity 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
Alpha int
Blue int
Green int
Red int

공개 메소드들

메소드 설명
RGB ( int R, int G, int B ) : System

Initializes a new instance of the RGB struct.

RGB ( int A, int R, int G, int B ) : System

Initializes a new instance of the RGB struct.

ToString ( ) : string

The to string.

메소드 상세

RGB() 공개 메소드

Initializes a new instance of the RGB struct.
public RGB ( int R, int G, int B ) : System
R int The R.
G int The G.
B int The B.
리턴 System

RGB() 공개 메소드

Initializes a new instance of the RGB struct.
public RGB ( int A, int R, int G, int B ) : System
A int The A.
R int The R.
G int The G.
B int The B.
리턴 System

ToString() 공개 메소드

The to string.
public ToString ( ) : string
리턴 string

프로퍼티 상세

Alpha 공개적으로 프로퍼티

The alpha.
public int Alpha
리턴 int

Blue 공개적으로 프로퍼티

The blue.
public int Blue
리턴 int

Green 공개적으로 프로퍼티

The green.
public int Green
리턴 int

Red 공개적으로 프로퍼티

The red.
public int Red
리턴 int