-
I have been meaning to try this for a looooong time, almost a year maybe? I've read this example many times: https://py5.ixora.io/how_tos/use_camera3D.html and now I've put the Perhaps the
I have also tried Any tips? Update: With
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
That was a good debugging step. Sometimes you might think the jar is being included but it is actually not. I'm happy you thought to do that. I also tried a bunch of import statements that didn't work. Eventually I stopped guessing and got the answer by looking at the PeasyCam.java source code. The package name for that class is from peasy import PeasyCam There's also an example notebook using PeasyCam in py5examples with the correct import statement. |
Beta Was this translation helpful? Give feedback.
That was a good debugging step. Sometimes you might think the jar is being included but it is actually not. I'm happy you thought to do that.
I also tried a bunch of import statements that didn't work. Eventually I stopped guessing and got the answer by looking at the PeasyCam.java source code. The package name for that class is
peasy
. The line of code you need is:There's also an example notebook using PeasyCam in py5examples with the correct import statement.