Please enable JavaScript.
Coggle requires JavaScript to display documents.
プログラミング (コーディング (色付けの関数 (赤色 fill(255,0,0);
赤色fill(255,0,0,);, 緑色fill(0…
プログラミング
コーディング
色付けの関数
赤色 fill(255,0,0);
緑色fill(0,255,0);
青色fill(0,0,255);
-
半透明の時は4で割る ex)fill(255,mouseX/4,mouseY/4);
円の作り方
ellipse(0,0,0);
上からの位置(タテ)ellipse(0,100,0);
-
左からの位置(ヨコ)ellipse(100,0,0);
円の輪郭消し方の関数noStroke();
円を画面の中心に移動 ellipse(width/2,height/2,200);
左上と右上に円を作る ellipse(width/2,height/2,200); ellipse(width/2+100,height/2-110,120); ellipse(width/2-100,height/2-110,120);
3つの円をマウスの動きに合わせる ellipse(mouseX,mouseY,200); ellipse(mouseX+100,mouseY-110,120); ellipse(mouseX-100,mouseY-110,120);
-