Hi! I have a java2d geometry problem that I am trying to solve for a project I’m currently working on. My maths isn’t great by any stretch of the imagination, so it might be true that this is a lot simpler than I am imagining. Please forgive my ignorance. I have made a quick visual representation of what I am trying to achieve (see
http://img382.imageshack.us/img382/5152/collisionbearinggz3.th.jpg
). The scenario is as follows:
My (circular) bot has a surrounding Circle representing it’s sensor range. When this circle intercepts an obstacle (also a circle) my checkCollision() method returns true. The Bot class holds the bearing (in radians) which the bot is currently travelling towards. When the bot collides with the Obstacle, I want it to call the rotate() method - this rotates the bot by a small increment each game loop - until the bot is facing in the opposite direction to the Obstacle. I create a line to join the obstacle with the bot, representing the bearing of the Obstacle. But what I really need to know is theta - the angle between the current bearing and the new bearing.
My first idea was to call rotate() until the bearing line was parallel with the obstBearing line, however I can’t work out how to do that and it might cause a problem if the bot rotates clockwise instead of anti-clockwise. So it looks like I’m in for some complicated trigonometry. Any ideas(?) much appreciated. Thanks for reading this.
Here’s some of my code to give an idea of how my program works:
public double calculateBearing() {
double newBearing = 0;
Line hypotenuse;
Vector2f intersection;
double m, c, x2, x1, y2, y1, r;
x1 = botCentre.x;
y1 = botCentre.y;
x2 = obstLoc.x;
y2 = obstLoc.y;
r = sensCircle.getRadius();
m = (botCentre.y - obstLoc.y)/(botCentre.x - obstLoc.y); // gradient (or slope) of line
c = y1 - (m * x1); // y intersection
//calculations here
return newBearing;
}