我正在编写一个java应用程序,我希望通过包含Processing库来嵌入Processing sketch。我已经编写了Processing sketch,但现在我想把它作为我的大型程序的一部分。有没有办法通过“常规”java应用程序使用public static void main
方法来实例化PApplet并让它从应用程序访问数据。
当程序实例化JApplet时,会显示窗口(在setup
方法中设置了正确的大小,但是我想要使用展开库绘制的地图不会渲染)
答案 0 :(得分:1)
我认为是:
PApplet embed = new Embedded();
// important to call this whenever embedding a PApplet.
// It ensures that the animation thread is started and
// that other internal variables are properly set.
embed.init();