Checking if a point is on an arc, defined by two vectors

In summary, to check if a given point lies on an arc defined by two vectors of equal length starting at the same point, one can use trigonometry to calculate the angle the point makes with the x-axis, and then compare it to the angles each vector makes with the x-axis. Alternatively, one can find the equation of the line passing through the tips of the two vectors and check if the origin and the point lie on the same side of the line. Another approach is to take the sum of the two vectors and bisect the angle to create a vector that always lies within the arc, and then check if the dot product between the new vector and the difference between the point and one of the vectors is positive (acute angle) or
  • #1
deluksic
21
0
So, i have a point in the coordinate system, and an arc defined by two vectors of equal length starting in the same point. The arc is always smaller than 180. How would i check if the point is on the arc? (the point is always on the circle, just need to check if it is in between these two vectors)

http://img835.imageshack.us/img835/9043/59064651.png
By deluksic at 2012-05-29
 
Last edited by a moderator:
Mathematics news on Phys.org
  • #2
Using trig, try and figure out the angle it makes with the x-axis (usually where 0 degrees is located), then show that that angle is between the two angles that each vector makes with the x axis.
 
  • #3
Vorde said:
Using trig, try and figure out the angle it makes with the x-axis (usually where 0 degrees is located), then show that that angle is between the two angles that each vector makes with the x axis.

Ok, trig would do, but can't you test x and y values of vectors and the point? I tried now drawing lines horizontally and vertically in the tips of both vectors. That would give me something to start with, now i need to test which lines outline the surface i need...

Oh, and i need this for a computer program so i need it to be fast :)

EDIT: now i see i could just draw line trough tips of these vectors and test whether the point is above or below the line
 
Last edited:
  • #4
Couldn't you just check if the vector whose head is the given point has the same length as the other two vectors?
 
  • #5
You could avoid any trigonometry by finding the equation of the line that goes through the tips of v1 and v2. Then check to see whether the origin is on the same side of the line as the point of interest. If the origin lies on the opposite side of the line from the point, then the point lies in the arc between v1 and v2.

Edit: I missed your edit above which is basically this, but note that you can't just check whether the point lies above or below the line. For a different configuration of v1 and v2, points in the arc will lie above the line, not below it. You should check whether the point lies on the same side of the line as the origin.
 
  • #6
The_Duck said:
You could avoid any trigonometry by finding the equation of the line that goes through the tips of v1 and v2. Then check to see whether the origin is on the same side of the line as the point of interest. If the origin lies on the opposite side of the line from the point, then the point lies in the arc between v1 and v2.

Edit: I missed your edit above which is basically this, but note that you can't just check whether the point lies above or below the line. For a different configuration of v1 and v2, points in the arc will lie above the line, not below it. You should check whether the point lies on the same side of the line as the origin.

Thank you very much, yes, this is what i was looking for :D (never would've tought of the origin.. :redface:)
 
  • #7
Take v_3 = (v_1 + v_2) and normalize it u_3 = v_3/ |v_3|.

The angle the test vector makes with u_3 has to be smaller than the angle v_1 (and v_2) make with u_3.

The dot product of v_1 and u_3 is

v_1 . u_3 = |v_1| cos α

The dot product of your test vector and u_3 is

v . u_3 = |v| cos β

If |β| < |α|, i.e. cos β > cos α then your test vector is in the right sector.

This should be rather fast.
 
  • #8
M Quack said:
Take v_3 = (v_1 + v_2) and normalize it u_3 = v_3/ |v_3|.

The angle the test vector makes with u_3 has to be smaller than the angle v_1 (and v_2) make with u_3.

The dot product of v_1 and u_3 is

v_1 . u_3 = |v_1| cos α

The dot product of your test vector and u_3 is

v . u_3 = |v| cos β

If |β| < |α|, i.e. cos β > cos α then your test vector is in the right sector.

This should be rather fast.

Hmm, interesting idea, i'll give it a try because lines give me problems when x's of vectors are the same then I am dividing by 0 :mad:
 
  • #9
You could look at my solution as an implementation of the line check...
 
  • #10
Just curious, what happens when v1=-v2? by adding those two i get v3(0,0)
 
  • #12
Then the angle between v_! and v_2 is 180 deg and to know which way you have to go (which arc is the "good" one) you need to know which vector is the beginning and which is the end - instead of just taking the sum (same result if you switch v_1 and v_2!), you need to build a vector that bisects the angle. If you do that, then the method will work for any angle, as the angle with the bisecting vector will always be less than 180 deg. (if it is 180 deg, then you are accepting the whole circle).
 
  • #13
In terms of dot products, you just need to check whether (A-X) dot (B-X) is positive (acute angle) or negative (obtuse angle).
 
  • #14
Nice and elegant, but it has the same problem:If A and B are exactly opposite each other the angle AXB is always 90 deg, i.e. the dot product is zero. At least you don't get a division by zero error as you don't have to normalize vectors.
 
  • #15
I went around it by making few checks ;) now it works :D

yes and i am accepting the whole circle, actually it is usefull to me as I'm making a game where i need arcs AND circles, now i have both in one! awesome!
 

1. How do you check if a point is on an arc?

To check if a point is on an arc, you need to first define the arc using two vectors. Then, you can use the distance formula to calculate the distance between the point and the center point of the arc. If the distance is equal to the radius of the arc, then the point is on the arc.

2. What do the two vectors represent in this scenario?

The two vectors represent the start point and end point of the arc. Together, they define the arc and can be used to calculate its radius and center point.

3. Can any point be on an arc?

No, not all points can be on an arc. The point must lie within the arc's radius and must also align with the start and end points of the arc in order to be considered on the arc.

4. Is there a specific formula to check if a point is on an arc?

Yes, the formula for checking if a point is on an arc involves calculating the distance between the point and the center point of the arc, as well as comparing it to the radius of the arc.

5. Are there any other methods to check if a point is on an arc?

Yes, there are other methods to check if a point is on an arc, such as using trigonometric functions to calculate the angle between the point and the center point of the arc. However, using the distance formula is the most commonly used method.

Similar threads

  • General Math
Replies
1
Views
1K
  • General Math
Replies
16
Views
3K
Replies
3
Views
255
Replies
18
Views
3K
  • Introductory Physics Homework Help
Replies
2
Views
371
Replies
7
Views
7K
Replies
13
Views
1K
Replies
7
Views
3K
  • Linear and Abstract Algebra
Replies
9
Views
187
  • Linear and Abstract Algebra
Replies
9
Views
563
Back
Top