What is a good way of transforming a local relative point, into the world (screen) space in Processing?

For example, take the Flocking example that comes with the Processing PDE. How would I implement a relativeToWorld method and a worldToRelative method in the Boid class. These methods would take into consideration, all the transforms done in the render method.

I was thinking I would want to transform PVector objects, so the method signatures might look something like:

PVector relativeToWorld(PVector relative) {
    // Take a relative PVector and return a world PVector.
}

PVector worldToRelative(PVector world) {
    // Take a world PVector and return a relative PVector.
}
link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Unfortunately, Processing doesn't make life easy with such things. It doesn't provide us access to transformation matrices, so I believe we have to use a manual transformation matrix/vector multiplication. (If you're curious, I used frame-to-canonical transformation matrices in homogeneous representation).

WARNING: This is a Mathematica result quickly interpreted in java which is assuming you only have one rotation and one translation (as in the render method). The translation is only given by the loc PVector.

PVector relativeToWorld(PVector relative) {
  float theta = vel.heading2D() + PI/2;
  float r00 = cos(theta);
  float r01 = -sin(theta);
  float r10 = -r01;
  float r11 = r00;
  PVector world = new PVector();
  world.x = relative.x * r00 + relative.y*r01 + loc.x;
  world.y = relative.x * r10 + relative.y*r11 + loc.y;
  return world;
}

PVector worldToRelative(PVector world) {
  float theta = vel.heading2D() + PI/2;
  float r00 = cos(theta);
  float r01 = sin(theta);
  float r10 = -r01;
  float r11 = r00;
  PVector relative = new PVector();
  relative.x = world.x*r00 + world.y*r10 - loc.x*r00 - loc.y*r10;
  relative.y = world.x*r01 + world.y*r11 - loc.x*r01 - loc.y*r11;
  return relative;
}
link|improve this answer
Are all the x's and y's correct in your code? And I think where you are setting relative in the last few lines, it should be setting the x and y properties? – Adam Harte Mar 30 '11 at 20:11
Corrected the relative.x/y. Does it work for you? I tested it now and it seems to do fine, no? Again, not the best solution because it's limited to only one translation and rotation. – num3ric Mar 30 '11 at 22:49
Works perfectly. I just had to have time to test it :) Thanks for testing and for the edit. – Adam Harte Mar 31 '11 at 3:15
I believe you left out a minus sign in the worldToRelative function. Should be float r01 = -sin(theta); Spent a while trying to figure that out. – genericdave Sep 9 '11 at 23:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.