環境
Mac OSX
python3
/jupyter notebook
/calysto
processing3
/processing-java
◾️コード
import java.util.Random; void setup(){ randomSeed( 0 ); for( int i = 0; i < 5; i++){ println( random( 1.0f ) ); } println("-----------------------"); Random rs = new Random( 0 ); for( int i = 0; i < 5; i++){ println( rs.nextFloat() ); } } void draw(){ }
◾️結果
Sketch #34 state: ReferenceError: Random is not defined 0.12706408696249127 0.4680652036331594 0.9058290123939514 0.6254248928744346 0.36673190584406257 ----------------------- ReferenceError: Random is not defined
◾️状況
上記のように、Randomオブジェクトを作成することができません。
processingのpde上では動作します。
以下のコードも同様です。
import java.util.Random; Random generator; void setup() { size(640,360); generator = new Random(); }
Sketch #35 state: ReferenceError: Random is not defined ReferenceError: Random is not defined
◾️ 質問があります。
processing-javaだとうまくいかないのかと考えているのですが、、jupyter上ではうまく動作させることはできないでしょうか?
よろしくお願いいたします。
あなたの回答
tips
プレビュー