Loading...
Logo
Processing Forum
I've a "tunnel drive" with proscene and im wondering how i am able to rotate the camera a little bit around it's own axes, so that the textcirles seems not to be on one line but descending or ascending.


Replies(4)

Hi,
  
you may call scene.camera().setPosition() together with scene.camera().lookAt() to position and orient the camera before scene.camera().addKeyFrameToPath() (please see the CameraInterpolation example). The interpolated camera frame positions and orientations depend upon the added keyFrames (see  Catmull Rom spline). You can also use any other camera method that define its position and orientation before setting the keyFrame (please refer to the  camera API).
so far - so clear, many thanks. another item: when im driving through this tunnel, i want to be able to move the camera to the right or left, depending on a variable which changes all the time (Which i get from the kinect, but programmatically i have a variable with an amount starting from 0 - width (0 - 1024 as example).

I've saw your article about direct camera control
https://forum.processing.org/topic/direct-camera-control-in-proscene

and asking myself if its what i need. I want to manipulate an existing, interpolated path during I am on the camera drive. Im very sorry about my basic questions - but im not a programmer and without some tutorials im sometimes a bit helpless.


Copy code
  1. import hardcorepawn.fog.*;
  2. import processing.video.*;
  3. import processing.opengl.*;
  4. PImage img;
  5. PImage imgTitle;
  6. PImage imgSubtitle;
  7. float radius = 100;
  8. float kreise = 260;
  9. int imgwidth = 10;
  10. PFont helvetica;
  11. int camPosNumb = 30;
  12. float[] camPosX = new float[camPosNumb];
  13. float[] camPosY= new float[camPosNumb]; 
  14. float[] camPosZ= new float[camPosNumb];
  15. int camPosIndex = 0;
  16. import peasy.*;
  17. import remixlab.proscene.*;
  18. Scene scene;
  19. KeyFrameInterpolator kfi;
  20. fog myFog;
  21. float nearDist = 40;
  22. float farDist = 70; 
  23. color fogColor = color(0);



  24. void setup() {
  25.   size(506, 900, OPENGL);
  26.   myFog=new fog(this);
  27.   myFog.setupFog(nearDist,farDist);
  28.   myFog.setColor(fogColor);
  29.   img = loadImage("samuellebowitz_weisserfont-01.png");
  30.   imgTitle = loadImage("samuellebowitz_schwarzerfont-05.png");
  31.   imgSubtitle = loadImage("samuellebowitz_schwarzerfont-05.png");
  32.   scene = new Scene(this);
  33.   helvetica = loadFont("HelveticaNeue-Light-48.vlw");
  34.   //füllen array mit kamera-Positions-Daten
  35.   for (int i = 0; i < camPosX.length; i+=1) {
  36.      camPosY[i] = cos(radians(i*(360/camPosNumb)))*(radius+imgwidth*0.7); //
  37.      camPosX[i] = imgwidth/2;
  38.      camPosZ[i] = sin(radians(i*(360/camPosNumb)))*(radius+imgwidth/2);
  39.    } 
  40.   
  41.   for (int i = 0; i < camPosNumb-1; i++) { 
  42.      scene.camera().setPosition(new PVector(camPosX[camPosIndex],
  43.                                                      camPosY[camPosIndex],
  44.                                                      camPosZ[camPosIndex]));
  45.      
  46.      scene.camera().setOrientation(1,1); 
  47.      scene.camera().lookAt(new PVector(camPosX[camPosIndex+1],
  48.                                         camPosY[camPosIndex+1],
  49.                                         camPosZ[camPosIndex+1]));
  50.                                        
  51.      scene.camera().addKeyFrameToPath(1);
  52.      //re-position the camera:
  53.      camPosIndex +=1;
  54.   } 
  55.   scene.camera().setPosition(new PVector(sin(radians(10))*radius,cos(radians(10))*radius,1));
  56.   scene.camera().lookAt(new PVector(sin(radians(15))*radius,cos(radians(15))*radius,1));
  57.   
  58.   scene.showAll();
  59.   kfi = scene.camera().keyFrameInterpolator(scene.path('1'));
  60.   kfi.setInterpolationSpeed(0.02);
  61.   //scene.setCameraPathsAreDrawn(true);  

  62. }

  63. void draw() {
  64.  println("lastFrameUpdate" +scene.camera().lastFrameUpdate);
  65.  background(0);
  66.   if (camPosIndex >= camPosNumb-1) {
  67.   camPosIndex=0;
  68.   
  69. }
  70.  for (int i = 0; i < 360; i+=360/kreise) {
  71.    float z = sin(radians(i))*radius;
  72.    float y = cos(radians(i))*radius;
  73.    pushMatrix();
  74.    translate(0,y,-z);
  75.    rotateX(radians(-i));
  76.    fill(0, 255, 255);
  77.    //text für grad-anzeigen
  78.    //rotateY(radians(180));
  79.    //textFont(helvetica, 1);
  80.    //text(360-i+"°", -10, -10);
  81.    //rotateY(radians(180));
  82.    //text-ringe
  83.    image(img, 0, 0, imgwidth, imgwidth);
  84.    popMatrix();
  85.  }  

  86.      
  87. }

  88. void keyPressed() {
  89.   kfi = scene.camera().keyFrameInterpolator(scene.path('1'));

  90.   if (kfi == null)
  91.     return;

  92.   if( key == 'u' || key == 'v' ) {
  93.     if ( key == 'u') 
  94.       kfi.setInterpolationSpeed(kfi.interpolationSpeed()-0.01);
  95.     if ( key == 'v')
  96.       kfi.setInterpolationSpeed(kfi.interpolationSpeed()+0.01);
  97.     println("interpolation speed = " + kfi.interpolationSpeed());
  98.   }
  99.   
  100.    if (key == 'i') {
  101.     save("printscreen.png");
  102.   }
  103. }

do you mean to rotate the camera around it's y-axis while interpolating its position? i can't test it from where i'm (but till june). however the kfi is meant to interpolate both, the position and the orientation of the frame. you can try to set the camera in "first person" (just press the space bar) and "look-around" while interpolation takes place and see if that does the trick for you. a better approach would be to interpolate and extra frame and retrieve its interpolated positions (frame.postion()) and feed them to the camera frame (camera.frame().setposition()). see the frameinterpolation example.