Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Suppose I have a line segment going from (x1,y1) to (x2,y2). How do I calculate the normal vector perpendicular to the line?

I can find lots of stuff about doing this for planes in 3D, but no 2D stuff.

Please go easy on the maths (links to worked examples, diagrams or algorithms are welcome), I'm a programmer more than I'm a mathematician ;)

share|improve this question
And if you want to know on the "maths" behind this, you can look up my answer at stackoverflow.com/a/7470098/189767. It's basically the same, but more elaborate. – Andreas Jan 25 at 8:47

3 Answers

up vote 73 down vote accepted

if we define dx=x2-x1 and dy=y2-y1, then the normals are (-dy, dx) and (dy, -dx).

Note that no division is required, and so you're not risking dividing by zero.

share|improve this answer
3  
It's quite subtle and took me a while to realise normal.x = -dy and normal.y = dx. I had them the other way around because it looked like a typo assigning the x part to the y value... – Piku Aug 7 '09 at 13:10
stackoverflow.com/a/7470098/183120 for more math on this. – legends2k Jan 25 at 8:13
@OrenTrutner I still don't understand this; (x', y') = (-y, x) and (x', y') = (y, -x) seems to be right, but why would one use dx and dy here. Moreover, based on slopes, m1 * m2 = -1 for right angle lines, hence dy' = dx' * (-dx/dy) and dx' = dy' * (-dy/dx), how come in your equation normal.x = x' = -dy? – legends2k Jan 25 at 8:53
Could you please brief more on how the delta plays a role here? I'm sure I'm missing something here. – legends2k Jan 25 at 8:58
2  
@legends2k: The delta is the tangent vector. The normal is the direction perpendicular to the tangent. Flipping the x/y values and negating one becomes obvious if you look at a 2D matrix for 90 deg rotation: en.wikipedia.org/wiki/Rotation_matrix#Basic_rotations – geon Feb 24 at 17:24
show 1 more comment

Another way to think of it is to calculate the unit vector for a given direction and then apply a 90 degree counterclockwise rotation to get the normal vector.

The matrix representation of the general 2D transformation looks like this:

x' = x cos(t) - y sin(t)
y' = x sin(t) + y cos(t)

where (x,y) are the components of the original vector and (x', y') are the transformed components.

If t = 90 degrees, then cos(90) = 0 and sin(90) = 1. Substituting and multiplying it out gives:

x' = -y
y' = +x

Same result as given earlier, but with a little more explanation as to where it comes from.

share|improve this answer
Thanks a ton, was breaking my head on how it was getting derived. – legends2k Jan 25 at 8:19
Although I knew the rotation formula earlier, the thing that clicked inside my head, by this answer, was that the angle is a constant (+/- 90), which simplicifies it to a simple negation and reversal of x and y. – legends2k Jan 25 at 8:26
m1 = (y2 - y1) / (x2 - x1)

if perpendicular two lines:

m1*m2 = -1

then

m2 = -1 / m1 //if (m1 == 0, then your line should have an equation like x = b)

y = m2*x + b //b is offset of new perpendicular line..

b is something if you want to pass it from a point you defined

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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