ProcessingError12

5/29課題

  • [error message]の前の数字はかぶってる数を表してます.
  • 名前のない人は直接 西谷@関西学院大・理工へメールして.

岩崎拓海

[2] [error message] The method ellipse(float,float,float,float) in the type PApplet is not applicable for the arguments(int,int,int,int)

日本語訳:タイプPAppletの中の方法楕円(float,float,float,float)は、
議論(int、int、int、int)には適用可能ではありません。
状況説明:
size(480,120);
ellipse(140,0,190,190,200);
ellipseの数が1つ多い。
対処法: 1つ数を減らす
size(480,120);
ellipse(140,0,190,190,);
comment
修正間違ってるよ.

新田 大智 ニッタ ダイチ(DAICHI NITTA)

[2] [error message] The literal 150000000000000 of type int is out of range

[和訳]その文字15000000000000は範囲の外にあります。
[状況] background(255); stroke(0); fill(150000000000000); で止まった。
[対処法] 150000000000000を 範囲内の数に書き換える。
background(255); stroke(0); fill(150); rect(50,50,75,100);
comment
rareだ

宮地 航 ミヤジ ワタル(WATARU MIYAJI)

[7] [error message] The function sizee(int,int) does not exist.

[和訳]sizee という関数は存在しません。
[状況]
sizee(480,120);
arc(90,60,80,80,0,HALF_PI); arc(190,60,80,80,0,PI+HALF_PI); arc(290,60,80,80,PI,TWO_PI+HALF_PI); arc(390,60,80,80,QUARTER_PI,PI+QUARTER_PI);
1行目で止まった。
[対処法] スペルミス。 1行目 sizee をsize に書き直す。
size(480,120);
arc(90,60,80,80,0,HALF_PI); arc(190,60,80,80,0,PI+HALF_PI); arc(290,60,80,80,PI,TWO_PI+HALF_PI); arc(390,60,80,80,QUARTER_PI,PI+QUARTER_PI);
comment
4つのarcはいらない.

那須 比呂貴 ナス ヒロキ(HIROKI NASU)

[8] [error message] Syntax error, maybe a missing right parenthesis?

[和訳]文法エラー 構文エラー、恐らく、見当たらない右括弧?
[状況] size(150, 150); backgroud(150, 55, 89); rect(10, 10, 10, 10; で三行目で止まった。
[対処法] 3行目のセミコロンの前に右括弧を挿入。 rect(10, 10, 10, 10);
comment
もうちょい日本語らしく

井上 雄介 イノウエ ユウスケ(YUSUKE INOE)

[1] [error message] Unexpected token:*

[和訳] 意外な文字
[状況]
int x = 120; int y = 60; int radius = 12;
void setup() { size(240, 120); ellipseMode(RADIUS); }
void draw() { background(100,0,0);
float d =dist(mouseX, mouseY,x,y); if (d
comment
途中で切れてる.再送信して.

澄田 紳弥 スミタ シンヤ(SHINYA SUMITA)

[8] [error message] Syntax error,maybe a missing right parenthesis?

[和訳] 文法エラー、多分コンマが見当たらない?
[状況] size(480,120); background(0); fill(200); ellipse(132,82,200;200); で止まる
[対処法] 200の後をコンマにする size(480,120); background(0); fill(200); ellipse(132,82,200,200);
commnet
翻訳が違う.

高橋 優介 タカハシ ユウスケ(YUSUKE TAKAHASHI)

[2] [error message] Cannot find anything named "mouse"

[和訳]「マウス」という名の何も見つけることができません。
[状況]
void setup() { size(640, 640); rectMode(CENTER); noStroke(); fill(0, 102, 153, 204); }
void draw() { background(255); rect(width-mouse, height-mouseY, 100, 50);}
の最後の行で止まった.
[対処法] 最後の行のwidth-mouseの後ろにXまたはYを挿入、
void setup() { size(640, 640); rectMode(CENTER); noStroke(); fill(0, 102, 153, 204); }
void draw() { background(255); rect(width-mouseX, height-mouseY, 100, 50);}
comment
日本語と英語が混ざっている."mouse"という...システム変数mouseXに修正.

辻 健太 ツジ ケンタ(KENTA TSUJI)

[1] [error message]

[日本語訳:
[状況説明:
for(int I=20; i<400; i=i+8;)
エラーメッセージが出ず、ただ実行できない。
対処法:文字を『I』もしくは『i』に統一する。
comment
ふーんそうなんだ.

岡野 友貴 オカノ ユウキ(YUKI OKANO)

[2] [error message] unexpected char:/'

[和訳]"/"が抜けているのではないか?
[状況]
size(480, 120);
noSmooth(); somethingを無効に
ellipse(140, 60, 90, 90);
で3行目で止まった。
[対処法] コメントの直前には"//"が必要である。
よって、2行目の「somethingを無効に」の直前に"//"を挿入する。
size(480, 120);
noSmooth(); //somethingを無効に
ellipse(140, 60, 90, 90);
comment
rareだ

鍋島 亮太 ナベシマ リョウタ(RYOTA NABESHIMA)

[1] [error message] Sntax error,maybe it mistook 0 or o with blind touch.

文法エラー たぶんブラインドタッチで0とoを打ち間違えた (場所も近く似ているから)
状況説明 fill(0,0,255); rect(0,o,100,200);
訂正 fill(0,0,255); rect(0,0,100,200);
comment
へー.そんなメッセージもあるのね.

藤原 今日子 フジワラ キョウコ(KYOKO FUJIWARA)

[2] [error message] unecpected char:\'

[和訳]予期しない文字があります。
[状況] size(480,120); beginShape(); で、2行目で止まった。
[対処法] )を半角に size(480,120); beginShape();
comment
全角,半角は注意しよう.あと全角空白文字.

横山 晃一 ヨコヤマ コウイチ(KOICHI YOKOYAMA)

[8] [error message] Syntax error, maybe a missing right parenthesis?

[和訳:文法エラー。おそらく、正しい挿入語句ではありません。
[状況:
size(400,400); background(0); noStroke(); fill(0,0,255); rect(0,0,100,200); fill(255,0,0,255); rect(0,0,200,40); fill(255,0,0,191); rect(0,50,200,40);
fill(255,0,0,127;
10行目で止まった
[対処:10行目のセミコロンの前に「 ) 」を挿入
size(400,400); background(0); noStroke(); fill(0,0,255); rect(0,0,100,200); fill(255,0,0,255); rect(0,0,200,40); fill(255,0,0,191); rect(0,50,200,40);
fill(255,0,0,127);
comment
日本語訳が適切でない.後,最初の行いらんし.

入江 大史 イリエ ダイシ(DAISHI IRIE)

[7] [error message] The function nostroke() does not exist.

[和訳 nostroke()関数は存在しません。
[状況 実行できない。
[対処法 strokeのsを大文字にする。
comment
よくある間違い.

酒井 崚 サカイ リョウ(RYO SAKAI)

[1] [error message] It looks like you're mixing "active" and "static" modes.

[日本語訳:アクティブ、スタティックモードを混合するように思われます
[状況説明:
size(400,400);
void draw(){ rect(40,40,40,40); }
size(400,400);の所はスタティックモードとなっており、
void draw(){rect(40,40,40,40);}の所はアクティブモードとなっている
[対処法:
void setup(){ size(400,400); }
void draw(){ rect(40,40,40,40); }
のようにvoid setup(){}を追加し、アクティブモードとするか、
size(400,400);
rect(40,40,40,40);
のようにvoid draw(){}を削除し、スタティックモードにさせる
comment
へ.そうなんだ.

岩辻 光功 イワツジ ミツヨシ(MITSUYOSHI IWATSUJI)

[7] [error message] The function endshape() does not exist.

[日本語訳:endshape()という機能は存在しません。
[状況説明: endshape(); ここのsを大文字のSにするのを忘れた。
[対処法: 小文字のsを大文字のSに変更。 endShape();
comment
ありがちな間違い.

広田 真丈 ヒロタ マサトモ(MASATOMO HIROTA)

[1] [error message] Sntax error maybe it mistook , ellipse(40,50,4050); rect(10,10,10,10)

[文法エラー たぶん40と50の間のコンマが抜けた。
[対処法 40と50の間にコンマを入れる。 ellipse(40,50,40,50); rect(10,10,10,10)
comment
Syntaxよ.丁寧なメッセージだ.

永井 絵菜 ナガイ エナ(ENA NAGAI) (結果1/1)

[8] [error message] Syntax error,mayby a missing right parenthesis?

[和訳]構文エラー、たぶん左括弧が見当たらない?
[状況] size(480,120); rect{180,60,220,40); で2行目で止まった。
[対処法] 2行目の左の中括弧を小括弧に変える。 size(480,120); rect(180,60,220,40);
comment
右か左か.

井上 修都 イノウエ シュウト(SHUTO INOE)

[1] [error message] Class Not Found Exception:quicktime. QTException

(和訳) QuickTimeがインストールされていないためではないでしょうか?
(状況) import processing.video.*; MovieMaker mm; int x=0;
void setup(){ mm=new MovieMaker(this,width,height,"nameofmovie.mov",30,MovieMaker.H263,MovieMaker.HIGH); size(500,500);
background(0); }
void draw(){ background(0); PImage a=loadImage("image1.png"); image(a,0,x); image(a,0,x-500); x=x+10;
if(x>=height){ x=0; } mm.addFrame(); } void keyPressed(){ if(key=='q'){ mm.finish(); } }
(対処法) QuickTimeをダウンロード
comment
rareだけど.何してるの?

泉 貴裕 イズミ タカヒロ(TAKAHIRO IZUMI)

[7] [error message] The function strokejoin(ist) does not exist.

和訳:この機能は存在しません。
状況:size(120,120);
   strokeWeight(12);
   strokeJoin(ROUND);
   rect(40,25,70,70);
   strokejoin(BEVEL);で止まった。
対処法:5行目のstrokejoinをstrokeJoinに変える。
    size(120,120);
    strokeWeight(12);
    strokeJoin(ROUND);
    rect(40,25,70,70);
    strokeJoin(BEVEL);
comment
これもありがち.全角で空白をいれないように!!!

近藤 拓弥 コンドウ タクヤ(TAKUYA KONDO)

[7] [error message] The function ellipsemode(int) does not exist.

日本語訳: "ellipsemode"という機能は存在しません。
状況説明:
ellipsemode(CENTER);
ellipse(30, 30, 50, 50);
ここでellipseModeのMをmと打ち間違えてしまった。
対処法: ellipsemodeをellipseModeに書きかえる。
ellipseMode(CENTER);
ellipse(30, 30, 50, 50);
comment
これもありがち.

高長 達也 タカナガ タツヤ(TATSUYA TAKANAGA)

[2] [error message] Can`t find anything named `center`

日本語訳:センター(center)という名前のものを見つけられません
状況説明:
size(400,400);
ellipseMode(center);
ellipse(50,50,50,70);
ellipseMode(CORNER);
ellipse(50,50,100,100); ここで2行目centerが小文字である
対処法: 大文字に変える
size(400,400);
ellipseMode(CENTER);
ellipse(50,50,50,70);
ellipseMode(CORNER);
ellipse(50,50,100,100);
comment
大文字小文字は大事.色が違うので分かるはずなんですが...

栃木 琢冶 トチギ タクヤ(TAKUYA TOCHIGI)

[7] [error msssage] The function nostroke() does not exist.

[和訳] nostroke()機能が存在していない
[状況] size(400,400); background(0); nostroke(); で3行目で止まった。
[対処法] nostrokeのsを大文字のSと置き換える
size(400,400); background(0); noStroke();
comment
ありがちね.

清水 雄大 シミズ ユウダイ(YUDAI SHIMIZU)

[8] [error message] Syntax error,maybe a missing right patenthesis?

(和訳)文法エラー、たぶん右の)抜けてない?
(状況)
ellipse(10,10,10,10; rect(10,10,10,10);
(対処法)1行目の終わりから2個目に)を挿入
ellipse(10,10,10,10); rect(10,10,10,10);
comment
ありがちね.

北川 貴大 キタガワ タカヒロ(TAKAHIRO KITAGAWA)

[2] [error message] The literal 10000000000000000000 of type int is out range

日本語訳:タイプintの文字通りの100000000000000000000は、範囲の外にあります。
状況説明:
size(100000000000000000000, 100000000000000000000 );
fill (0, 0, 255); サイズが大きすぎる。
対処法:サイズを小さくする。
size(1000, 1000); fill (0, 0, 255);
comment
かぶったか.

岩佐 恭佑 イワサ キョウスケ(KYOSUKE IWASA)

[3] [error message] The method size(int,int) in the type PApplet

is not applicable for the arguments (float,float)
[和訳] タイプPAppletの方法サイズは、表示することはできません。
[状況] size(0.1, 0.1); で1行目で止まった。
[対処法] ( )内の数字を1以上にする。
     size(1, 1);
comment
そんなことしたのね.空白は全角で入れないように.

宮崎 美博 ミヤザキ ヨシヒロ(YOSHIHIRO MIYAZAKI)

[7] [error message] The function SIZE(int,int) does not exist.

SIZE( , )という関数は存在しない。
小文字で書く関数を大文字で書いてしまった。
大文字か小文字で書く関数かを確認してから書く。
comment
大文字,小文字は気をつけよう.

山下 夏奈 ヤマシタ カナ(KANA YAMASHITA)

[8] [error message] Syntax error, maybe missing right parenthesis?

[和訳]構文エラー、たぶん右括弧見当たらない?
[状況] size(480, 120); rect(180, 60, 220, 40}; で2行目で止まった.
[対処法] 2行目の右の中括弧を小括弧に変える.
size(480, 120); rect(180, 60, 220, 40);
comment
丸括弧とか,波括弧って呼んでます.[は角括弧.

森松 直也 モリマツ ナオヤ(NAOYA MORIMATSU) (結果1/1)

[3] [error message] The method rect(float,float,float,float)in the type PApplet is not applicable for the arguments (int,float,int)

[和訳] type PAppletの中の表記が適用可能ではない。
[状況]
size(400,400); ellipse(10,10,10,10); rect(10,10.10,10); で3行目で止まった。
[対処法] 3行目の( )のなかの.を,に変更。
size(400,400); ellipse(10,10,10,10); rect(10,10,10,10);
comment
rareだ

岩田 嵩史 イワタ タカシ(TAKASHI IWATA)

[7] [error message] The function nostroke() does not exist.

[和訳] 関数nostroke()は存在しません。
[状況]
size(400,400); background(0); noStroke();
fill(0,0,255); rect(0,0,100,200); fill(255,0,0,255); rect(0,0,200,40); fill(255,0,0,191); rect(0,50,200,40); fill(255,0,0,127); rect(0,100,200,40); fill(255,0,0,63); rect(0,150,200,40);
[対処法] NostrokeのsをSに
size(400,400); background(0); noStroke();
fill(0,0,255); rect(0,0,100,200); fill(255,0,0,255); rect(0,0,200,40); fill(255,0,0,191); rect(0,50,200,40); fill(255,0,0,127); rect(0,100,200,40); fill(255,0,0,63); rect(0,150,200,40);
comment
ありがち.fill以下いらんし.

堀口 信 ホリグチ シン(SHIN HORIGUCHI)

[3] [error message] The method ellipse in the type PA pplet is not applicable for the arguments.

[和訳] 楕円を作るのにこのタイプは適用可能ではありません。
[状況] size(400,400); ellipse(10,10,10,0,1); rect(10,10,10,10);
[対処法] 二行目の最後の0,1の部分は本当は0.1を表したかったので,(コンマ)を.(ピリオド)に変える size(400,400); ellipse(10,10,10,0.1); rect(10,10,10,10);
comment
rareだ

阿南 誠 アナン マコト(MAKOTO ANAN)

[1] [error message] Syntax error, maybe a missing right parenthesis?

[和訳]構文エラー、恐らく、右括弧忘れてない?
[状況]
size(200,200); for(int i=0; i<100; i++;){ 2行目で止まる。
[対処法] 2行目の最後の括弧の前に余分なセミコロンがあるので それを削除。もう一度走らすとエラーはなくなった。
size(200,200); for(int i=0; i<100; i++){
comment
メッセージはrareではないが,間違いがrareだ.

関 美嵯子 セキ ミサコ(MISAKO SEKI)

[1] [error message] cannot convert from int to boolean

[和訳]整数を論理値にはできないよ。
[状況]
for(int i=20; i=400; i+=60){ //i<400をi=400にした。
line(i,40,i+60,80); }
[対処法] i=400の=を<に変更。
for(int i=20; i<400; i+=60){
line(i,40,i+60,80); }
comment
イコールの論理演算子は"=="です.

國生 一幸 コクショウ カズユキ(KAZUYUKI KOKUSHO)

[1] [error message] Web colors must be exactly 6 hex digits. This looks like 2.

<和訳>ウェブ・カラーは、正確に6 16進数でなければなりません。 これは、2のように見えます。
<状況>size(480, 120);    rect(180, 60, 220,#40);
{対処法}#40を40に直す size(480, 120); rect(180, 60, 220,40);
comment
rareだ.どういう意味か分らんな.

集計

[1] [error message] 
[1] [error message]  Web colors must be exactly 6 hex digits. This looks like 2.
[2] [error message] Cannot find anything named "mouse" 
[2] [error message] Can`t find anything named `center`
[1] [error message] Class Not Found Exception:quicktime. QTException
[1] [error message] It looks like you're mixing "active" and "static" modes.
[1] [error message] Sntax error maybe it mistook , ellipse(40,50,4050); rect(10,10,10,10) 
[1] [error message] Sntax error,maybe it mistook 0 or o with blind touch.
[8] [error message] Syntax error, maybe a missing right parenthesis?
[8] [error message] Syntax error, maybe a missing right parenthesis? 
[8]  [error message] Syntax error, maybe a missing right parenthesis? 
[8]  [error message] Syntax error, maybe missing right parenthesis? 
[8]  [error message] Syntax error,maybe a missing right parenthesis? 
[8]  [error message] Syntax error,maybe a missing right patenthesis?
[8]  [error message] Syntax error,mayby a missing right parenthesis? 
[7] [error message] The function SIZE(int,int) does not exist.
[7]  [error message] The function ellipsemode(int) does not exist.
[7]  [error message] The function endshape() does not exist.
[7]  [error message] The function nostroke() does not exist. 
[7]  [error message] The function nostroke() does not exist. 
[7]  [error message] The function sizee(int,int) does not exist. 
[7]  [error message] The function strokejoin(ist) does not exist.
[2] [error message] The literal 10000000000000000000 of type int is out range
[2] [error message] The literal 150000000000000 of type int is out of range 
[3] [error message] The method ellipse in the type PA pplet is not applicable for the arguments. 
[3] [error message] The method rect(float,float,float,float)in the type PApplet is not applicable for the arguments (int,float,int) 
[3] [error message] The method size(int,int) in the type PApplet
[1] [error message] Unexpected token:* 
[1] [error message] cannot convert from int to boolean 
[2] [error message] unecpected char:\' 
[2] [error message] unexpected char:/' 
Last modified:2016/07/19 12:42:25
Keyword(s):
References:[CompAInfo] [CompAInfo15] [CompAInfo19] [FirstYearEducation12] [FirstYearEducation13] [FirstYearEducation14]