質問編集履歴

4

追記

2022/05/29 09:16

投稿

Rin20
Rin20

スコア1

test CHANGED
@@ -1 +1 @@
1
- void setup/void drawでmissing operator,semicolon, or } のエラー表示が消えない
1
+ "Missing operator, semicolon, or '}' near 'setup'?"  のエラー表示が消えない
test CHANGED
@@ -1,4 +1,4 @@
1
- "Missing operator, semicolon, or '}' near 'setup'?"  のエラー表示が消えなくて困っています。必要なものは書いてあるのうに思うのですがどこに何が必要なのでしょうか。教えていただけると幸いです。
1
+ "Missing operator, semicolon, or '}' near 'setup'?"  のエラー表示が消えなくて困っています。void setup/void drawingに下線が引かれて表示されています。必要なものは書いてあるのうに思うのですがどこに何が必要なのでしょうか。教えていただけると幸いです。
2
2
  現在の実行環境はprocessing.exe (bata) 4.0b2 です。 よろしくお願いします。
3
3
  ```
4
4
  size(800,800);

3

エラー表示の追記

2022/05/29 09:14

投稿

Rin20
Rin20

スコア1

test CHANGED
File without changes
test CHANGED
@@ -1,4 +1,4 @@
1
- void setup/void drawでmissing operator,semicolon, or } のエラー表示が消えなくて困っています。必要なものは書いてあるのうに思うのですがどこに何が必要なのでしょうか。教えていただけると幸いです。
1
+ "Missing operator, semicolon, or '}' near 'setup'?"  のエラー表示が消えなくて困っています。必要なものは書いてあるのうに思うのですがどこに何が必要なのでしょうか。教えていただけると幸いです。
2
2
  現在の実行環境はprocessing.exe (bata) 4.0b2 です。 よろしくお願いします。
3
3
  ```
4
4
  size(800,800);

2

実行環境の追記

2022/05/29 05:45

投稿

Rin20
Rin20

スコア1

test CHANGED
File without changes
test CHANGED
@@ -1,4 +1,5 @@
1
1
  void setup/void drawでmissing operator,semicolon, or } のエラー表示が消えなくて困っています。必要なものは書いてあるのうに思うのですがどこに何が必要なのでしょうか。教えていただけると幸いです。
2
+ 現在の実行環境はprocessing.exe (bata) 4.0b2 です。 よろしくお願いします。
2
3
  ```
3
4
  size(800,800);
4
5
  background(0);

1

@meg_ さん:失礼いたしました。編集済です。エラーはvoid setup () 及び void draw() に表示されます。よろしくお願いします。

2022/05/29 05:24

投稿

Rin20
Rin20

スコア1

test CHANGED
File without changes
test CHANGED
@@ -1,5 +1,5 @@
1
1
  void setup/void drawでmissing operator,semicolon, or } のエラー表示が消えなくて困っています。必要なものは書いてあるのうに思うのですがどこに何が必要なのでしょうか。教えていただけると幸いです。
2
-
2
+ ```
3
3
  size(800,800);
4
4
  background(0);
5
5
  stroke(219,18,128);
@@ -35,3 +35,10 @@
35
35
  strokeWeight(4);
36
36
  stroke(0,50);
37
37
  }
38
+
39
+ void draw(){
40
+ float weight = dist(mouseX,mouseY,pmouseX, pmouseY);
41
+ strokeWeight(weight);
42
+ line(mouseX,mouseY,pmouseX,pmouseY);
43
+ }
44
+ ```