www.jpct.net

jPCT-AE - a 3d engine for Android => Support => Topic started by: dutch_delight on November 25, 2012, 09:38:48 PM

Title: get angle from objects
Post by: dutch_delight on November 25, 2012, 09:38:48 PM
Here's a problem I'm having.

I want a car to align to a surface. so what I've got is 4 dummy objects that are in position of the wheels.
These dummies are always on the ground polygon where the wheels intersect the ground.
That all works fine but how do I align my car to the angle created by these?

I've got this (forward angle only) but it doesnt quite work:

forward_angle = collision_fr_dummy.getTransformedCenter().calcAngle(collision_fl_dummy.getTransformedCenter()););
player_vectortest_matrix = player.getRotationMatrix();

if (player_vectortest_matrix.getYAxis().z > forward_angle) {
car_angle_current_frame.z = forward_angle;
} else if (player_vectortest_matrix.getYAxis().z < forward_angle) {
car_angle_current_frame.z = -forward_angle;
} else {
car_angle_current_frame.z = 0;
}

player.rotateZ(car_angle_current_frame.x*2);



any help much appreciated
Title: Re: get angle from objects
Post by: EgonOlsen on November 25, 2012, 09:53:02 PM
The car example that comes with desktop jPCT does something like that...maybe it's worth a look. It might not be applicable directly, but maybe it gives some ideas. You should find the code in the place()-method of the Car class.