Code Help: problem with importing .3ds file into processing?
in
Contributed Library Questions
•
1 year ago
I want to import .3ds file into processing but there's an error.
SO..Could you tell me
what the problem with this code?
- import mri.*;
import mri.v3ds.*; - import javax.media.opengl.*;
import processing.opengl.*;
import java.io.*; - V3dsScene vscene;
- void setup()
{
size(1720, 640, OPENGL);
smooth();
vscene = new V3dsScene(this, "camel.3ds");
} - void draw()
{
background(0);
vscene.draw();
}
1