C# Class RPG.Tone

The color tone class. Each component is handled with a value.
Exibir arquivo Open project: borisblizzard/arcreator Class Usage Examples

Public Methods

Method Description
ToString ( ) : string

Returns a that represents the current object.

Tone ( ) : System

Creates a Tone object with all values initialized as 0.0.

Tone ( float red, float green, float blue, float gray = 0.0f ) : System

Creates a Tone object. If gray is omitted, it is assumed at 0.

_arc_dump ( ) : byte[]

Serializes and dumps the Color object in ARC format.

_arc_load ( byte bytes ) : Tone

Deserializes and loads a Color object saved in ARC format.

set ( float red, float green, float blue ) : void

Sets all components at once. Gray remains the same.

set ( float red, float green, float blue, float gray ) : void

Sets all components at once.

Method Details

ToString() public method

Returns a that represents the current object.
public ToString ( ) : string
return string

Tone() public method

Creates a Tone object with all values initialized as 0.0.
public Tone ( ) : System
return System

Tone() public method

Creates a Tone object. If gray is omitted, it is assumed at 0.
public Tone ( float red, float green, float blue, float gray = 0.0f ) : System
red float The red value (-255-255)
green float The green value (-255-255)
blue float The blue value (-255-255)
gray float The gray value (0-255)
return System

_arc_dump() public method

Serializes and dumps the Color object in ARC format.
public _arc_dump ( ) : byte[]
return byte[]

_arc_load() public static method

Deserializes and loads a Color object saved in ARC format.
public static _arc_load ( byte bytes ) : Tone
bytes byte A array containing the serialized data.
return Tone

set() public method

Sets all components at once. Gray remains the same.
public set ( float red, float green, float blue ) : void
red float The red value (-255-255)
green float The green value (-255-255)
blue float The blue value (-255-255)
return void

set() public method

Sets all components at once.
public set ( float red, float green, float blue, float gray ) : void
red float The red value (-255-255)
green float The green value (-255-255)
blue float The blue value (-255-255)
gray float The gray value (0-255)
return void