3Dモデルをprocessingによって表示したいのですが
エラーが出てしまいます。
processing
1PShape model; 2void setup() { 3size(800, 800, P3D); 4model = loadShape("globe.obj"); 5model.scale(8); 6} 7void draw() { 8background(100); 9translate(width/2, height/2, 0); 10shape(model); 11}
このソースでglobe.abjを表示したいのですがなぜか
error
1The file "C:\Users\onaya\Documents\Processing\tikyuu\data\2323sss.mtl" is missing or inaccessible, 2make sure the URL is valid or that the file has been added to your sketch and is readable.
こういうエラーが出てしまいます。
processingのデータの中にglobe.obj、globe.mtl、
その3Dモデルに貼るテクスチャのmp.jpg、mtlscr.jpgが入っています。
このglobe.mtlを2323sss.mtlに名前を変えると
error
1ArrayIndexOutOfBoundsException: -9885
こういうエラーが出ます。
解決方法を教えてください。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/01/05 06:34 編集
2020/01/05 07:02
2020/01/05 07:17