Saved Bookmarks
| 1. |
How many parts tranpency have......... |
|
Answer» mula for combining C1 = (R1,G1,B1) and C2 = (R2,G2,B2) into a NEW color C3, where C2 is overlayed on top of C1 with opacity p is USUALLY ( (1-p)R1 + p*R2, (1-p)*G1 + p*G2, (1-p)*B1 + p*B2 ) . See Wikipedia ARTICLE on transparency for more information. |
|