teratail header banner
teratail header banner
質問するログイン新規登録

質問編集履歴

2

コードの変更

2020/12/17 15:12

投稿

mothi5656
mothi5656

スコア27

title CHANGED
File without changes
body CHANGED
@@ -2,6 +2,12 @@
2
2
  ```ここに言語を入力
3
3
  processing
4
4
  コード
5
+ void setup() {
6
+ size(200, 200);//
7
+ background( 0 );
8
+ textSize(16);
9
+ textAlign(CENTER, CENTER);
10
+ }
5
11
  void draw() {
6
12
  move();
7
13
  count = count + 1;

1

コードの変更

2020/12/17 15:12

投稿

mothi5656
mothi5656

スコア27

title CHANGED
File without changes
body CHANGED
@@ -2,6 +2,10 @@
2
2
  ```ここに言語を入力
3
3
  processing
4
4
  コード
5
+ void draw() {
6
+ move();
7
+ count = count + 1;
8
+ }
5
9
  void move() {// 動く縞
6
10
  float val; // 階調値(0~255)
7
11
  float NumOfCycle = 2; // 波の数
@@ -14,7 +18,6 @@
14
18
  x=count%width;
15
19
  fill(val);
16
20
  rect(i+x, 0, 1, height);
17
- count++;
18
21
  }
19
22
  }
20
23
  ```