We are about to switch to a new forum software. Until then we have removed the registration on this forum.
I'd like to display my scene on two different projector. I want to split my scene in two by drawing the left side on the left projector and the right part on the right projector to get a bigger display surface.
On processing 2 this solution is working: http://stackoverflow.com/questions/20737298/multiple-render-to-two-projectors-using-processing-for-polarization-based-3d/40363398#40363398
But it does not compile on Processing 3. Does anyone has any idea?
Answers
What compiler error do you get?
This is the code that produces the error ``` import javax.swing.JFrame;
....
public class PFrame extends JFrame { public PFrame() { setBounds(0,0,300,300); Second s = new Second(); add(s); s.init(); show(); } } ```
I have the following error for add(s); The function "add()" expects parameters like: "add(Component)" and for s.init(); The function "init()" does not exist
This code compiles with Processing 2 but not with Processing 3.