P5.js

Created Date: 2019-04-25/ updated date: 2019-04-25
    Owner & Collaborators
    License
    P5.js by yuki is licensed under the Creative Commons - Attribution license.
    Summary

    Memo

    関数

    posted by yuki on April 25, 2019
    noStroke()ストロークの描画を無効にする。
    background(color)canvasの背景色を指定。
    push()描画スタイルや座標の設定を一時的に保存する。
    pop()で元に戻る。
    pop()push()で設定した描画スタイルや座標の設定を元に戻す。
    translate(x, y)canvasの座標を移動。
    widthcanvasの幅を返す。
    heightcanvasの高さを返す。
    sin(angle)角度の正弦を計算して返す。
    cos(angle)角度の余弦を計算して返す。
    radians(degrees)degreesをラジアン単位に変換して返す。

    Comments