GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
pods::SDL::Color(3) User Contributed Perl Documentation pods::SDL::Color(3)

SDL::Color - Format independent color description

Core, Video, Structure

 my $black = SDL::Color->new(0, 0, 0);
 my $color = SDL::Color->new(255, 0, 0);
 my $r = $color->r; # 255
 my $g = $color->g; # 0
 my $b = $color->b; # 0
 $color->g(255);
 $color->b(255);
 # $color is now white

"SDL_Color" describes a color in a format independent way.

 my $color = SDL::Color->new(255, 0, 0);

The constructor creates a new color with the specified red, green and blue values.

 my $r = $color->r;
 $color->r(128);

If passed a value, this method sets the red component of the color; if not, it returns the red component of the color.

 my $g = $color->g;
 $color->g(128);

If passed a value, this method sets the green component of the color; if not, it returns the green component of the color.

 my $b = $color->b;
 $color->b(128);

If passed a value, this method sets the blue component of the color; if not, it returns the blue component of the color.

SDL::Surface

See "AUTHORS" in SDL.
2022-06-07 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.