Processing (BETA) version 135+ のリファレンスです。
旧バージョン使用者はソフトウェア内のリファレンスを参照してください。
この文書は Processing のAPIリファレンスを日本語に訳したものです。
最新の内容は 英語版 で確認して下さい。
| Name | blendColor() |
||||||
|---|---|---|---|---|---|---|---|
| Examples | ![]() color orange = color(204, 102, 0); color blue = color(0, 102, 153); color orangeblueadd = blendColor(orange, blue, ADD); background(51); noStroke(); fill(orange); rect(14, 20, 20, 60); fill(orangeblueadd); rect(40, 20, 20, 60); fill(blue); rect(66, 20, 20, 60); |
||||||
| Description | MODE パラメタによって与えられたブレンドモードに基づいて2つの色をブレンドします。 ブレンドモードについては blend() 関数を参照してください | ||||||
| Syntax | blendColor(c1, c2, MODE) |
||||||
| Parameters |
|
||||||
| Usage | Web & Application | ||||||
| Related | blend() color() |
この文書の原文はクリエイティブ・コモンズ(Creative Commons)のAttribution-Noncommercial-Share Alike(表示・非営利・継承) ライセンスで公開されています。
このライセンスは同一の許諾条件の下で原作者のクレジットを表示し、また作品を営利目的で利用しなければ、作品に対して複製、頒布、展示、実演、二次的著作物の作成が行えることを示します。
© 2007 Processing.org
© 2007 Processing.org


