colors.cpp

changeset 138
d22d5c1d9e8a
parent 117
7eb7a43a511b
child 147
291a1fe2d278
equal deleted inserted replaced
137:2b8b63be67fb 138:d22d5c1d9e8a
83 83
84 return -1; 84 return -1;
85 } 85 }
86 86
87 // ============================================================================= 87 // =============================================================================
88 uchar luma (QColor& col) {
89 return (0.2126f * col.red ()) +
90 (0.7152f * col.green ()) +
91 (0.0722f * col.blue ());
92 }
93
94 // =============================================================================
88 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 95 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
89 // ============================================================================= 96 // =============================================================================
90 void parseLDConfig () { 97 void parseLDConfig () {
91 FILE* fp = openLDrawFile ("LDConfig.ldr", false); 98 FILE* fp = openLDrawFile ("LDConfig.ldr", false);
92 99

mercurial