Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Corrected links that should have been relative instead of absolute.
C++Python
Crgb8T<Cprecision>Crgb8Tbyte (Template instantiation, Cprecision = byte).

...

TypeNameDescription
CprecisionrRed value (C++ only).
CprecisiongGreen value (C++ only).
CprecisionbBlue value (C++ only).
Cprecision[3]pChannelsRGB values vector (C++ only).

Methods

NameDescription
Crgb8T#assignassignInitializes RGB color.
rReturns red color (Python only).
gReturns green color (Python only).
bReturns blue color (Python only).
[]Returns color by index (0 = red, 1 = green, 2 = blue, Python only).

Anchor
assign
assign

assign

Initializes RGB color.

LanguageSyntax
C++void assign( Cprecision cr, Cprecision cg, Cprecision cb )
Pythonvoid assign( int cr, ing, cg, int cb )

...