mu chance or much chance ?

日々の戯れ言

ProcessingのPythonモード 勉強1

以下の本を読みながら,
ProcessingのPythonモードを勉強しています.
第1章です.

  • list1_1.pyde
size(800, 600)[f:id:muchance:20180630212208p:plain]
point(100, 200)
line(80, 40, 700, 500)
rect(200, 300, 400, 200)
ellipse(500, 300, 300, 200)
  • 出力結果

f:id:muchance:20180630211344p:plain

  • list1_2.pyde
size(640, 480)
background(0)
stroke(255, 255, 31)
fill(31, 127, 255)
point(200, 200)
line(80, 40, 600, 400)
rect(300, 200, 200, 180)
ellipse(450, 200, 200, 100)
  • 出力結果

f:id:muchance:20180630212208p:plain

  • list1_3.pyde
size(640, 480)
background(0)
stroke(255, 255, 31)
fill(31, 127, 255, 127)
point(200, 200)
line(80, 40, 600, 400)
rect(300, 200, 200, 180)
ellipse(450, 200, 200, 100)
  • 出力結果

f:id:muchance:20180630212517p:plain

  • list1_4.pyde
size(640, 480)
background(0)
stroke(255, 255, 31)
point(200, 200)
line(80, 40, 600, 400)

fill(31, 127, 255, 127)
rect(300, 200, 200, 180)

fill(255, 127, 31, 127)
ellipse(450, 200, 200, 100)
  • 出力結果

f:id:muchance:20180630212728p:plain

  • list1_5.pyde
size(640, 480)
colorMode(HSB, 360, 100, 100, 100)
background(0)
stroke(60, 30, 80)
point(200, 200)
line(80, 40, 600, 400)

fill(30, 80, 80, 50)
rect(300, 200, 200, 180)

fill(200, 80, 80, 50)
ellipse(450, 200, 200, 100)
  • 出力結果

f:id:muchance:20180630213047p:plain