public void draw() {
    background(200, 0, 0);
    // update the cam
    context.update();

    // update nite
    context.update(sessionManager);

    // draw depthImageMap
    image(context.depthImage(), 0, 0);

    // draw the list
    pointDrawer.draw();

    text(frameRate, 10, 10);
  }