An auxiliary class used in specifying the entries in a Color Lookup Table (CLUT)
![]() | blue The actual blue DAC value |
![]() | green The actual green DAC value |
![]() | red The actual red DAC value |
![]() | mvl_rgb (IML_SINT R, IML_SINT G, IML_SINT B) Simple constructor for users |
![]() | mvl_rgb (void) Zero argument constructor for arrays |
![]() | operator*= (IML_FLOAT F) Simple scaling to allow variable step sizes |
![]() | operator+= (mvl_rgb & V) Simple addition to allow rgb spacing by a delta |
![]() | operator-= (mvl_rgb & V) Simple subtraction to allow rgb spacing by a delta |
![]() | operator= (mvl_rgb & V) Simple assignment; copy the contents of another mvl_rgb object |
An auxiliary class used in specifying the entries in a Color Lookup Table (CLUT). NOTE: THE DATA STRUCTURE IS A DIRECT RIP-OFF OF RGBColor in QuickDraw.h! The only real difference is in the naming. If (should I say, when?) Apple decides to change this, then so will I. And if you decide to manipulate the values directly (you should not have to), then so will you. :-)
mvl_rgb(IML_SINT R, IML_SINT G, IML_SINT B)
mvl_rgb& operator=(mvl_rgb & V)
mvl_rgb& operator*=(IML_FLOAT F)
mvl_rgb& operator+=(mvl_rgb & V)
mvl_rgb& operator-=(mvl_rgb & V)
generated by doc++