MCPcopy Create free account
hub / github.com/audacity/audacity / ColourDistance

Method ColourDistance

libraries/lib-theme/Theme.cpp:285–290  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

283}
284
285int ThemeBase::ColourDistance( wxColour & From, wxColour & To ){
286 return
287 abs( From.Red() - To.Red() )
288 + abs( From.Green() - To.Green() )
289 + abs( From.Blue() - To.Blue() );
290}
291
292wxImage ThemeBase::MaskedImage( char const ** pXpm, char const ** pMask )
293{

Callers 2

CursorColourFunction · 0.80
OnPaintMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected