- Home /
Quick Angles Question
I have a code where I'm getting an angle between two Vector3's, however the angles returned come in the form of numbers like .011340 or .19872009752 as opposed to 90 degrees or 180 degrees. Can someone tell me what I'm doing wrong? The two variables used here are Vector3's:
generalDirection = Vector3.Angle (transform.position, desiredPosition);
EDIT: Sorry but now the angle starts at 35, goes up to 135 on the other side and goes back down to 35 with a full clockwise rotation. I'm confused.
EDIT: Ok I fixed that, now I just need help making one side negative and the other positive
aldo's code should work if this script is attached to the object at the vertex of the angle, otherwise replace vectors with the appropriate version of:
position1 - vertexPosition , position2 - vertexPosition
something like:
if(generalDirection > 180) generalDirection = -(360-generalDirection);
I've tried that already.
EDIT: Because the value never goes higher than 180 it just get's inverted and starts going back down until hits 0 on the other side.
Nvm figured something else out. Thanks for all the help!
Answer by aldonaletto · Jul 21, 2012 at 12:15 AM
Vector3 is a structure used to store many 3 float values, like points, vectors, angles etc. Transform.position and desiredPosition are points, not vectors, and Vector3.Angle is intended to be used with vectors. In this particular case, you're getting the angle between the vectors (0,0,0)->transform.position and (0,0,0)->desiredPosition, which normally makes no sense. If you want to measure the angle between the transform forward direction and the direction from the transform to the desiredPosition, you should use this:
generalDirection = Vector3.Angle(transform.forward, desiredPosition-transform.position);
A point is a position in the 3D world, while a vector is a direction - you can think of a vector as an "arrow" based on 0,0,0 and pointing to the desired direction. In order to calculate the vector that points the direction from position A to position B, subtract A from B:
directionAtoB = pointB-pointA;
The resulting vector shows the direction A to B, and its length (directionAtoB.magnitude) is the distance between A and B.
Answer by Seth-Bergman · Jul 21, 2012 at 12:17 AM
see the script reference here:
http://docs.unity3d.com/Documentation/ScriptReference/Vector3.Angle.html
they use two directions, not two points.. if you think about it, the angle based on two points in space would be relative to the point of origin..
Your answer
Follow this Question
Related Questions
Trying to get the angle of a camera object based on players forward, is not distance independent 0 Answers
Relative Rotation 1 Answer
How to calculate an end point of a line after rotating an angle in three-dimensional space? Thanks! 1 Answer
Vector3.Lerp moves other characters over network to (0, 0, 0) 1 Answer
How do I reset a GameObject pos / rot with a toggle? 0 Answers