calculating normal

Started by
2 comments, last by MarkusPfundstein 12 years, 8 months ago
Hi,
I am a beginner in opengl and maths.

I want to find the normal of the plane drawn :


glBegin(GL_QUADS);
glVertex2f(700.0f, 500.0f);
glVertex2f(720.0f, 500.0f);
glVertex2f(720.0f, 300.0f);
glVertex2f(700.0f, 300.0f);
glEnd();


I am trying to find collision detection using ray cast.

All suggestions are welcome.

Indie Game Developer

Game Studio: Freakout Games

Advertisement
Your quad is exclusively in the XY-plane, so the normal vector is the Z-axis; either (0,0,1) or (0,0,-1) depending on what you consider to be the front of it.

In general though, the normal can be calculated from the cross product of two non-linearly dependent vectors on your face. You can, for example, take two edges (the vector between two pairs of vertices), and calculate the normal as the cross product of the two vectors.
For a plane normal you need a third dimension. Then you take two edges of the plane that share the same corners, make vectors of them, take the cross product of those vectors and then normalize the cross product. So let's give your plane a z axis... and put them in a vertex (pseudo) class so the data can be manipulated by us...

vertice plane_a[color="#666600"]([color="#006666"]700.0f[color="#666600"], [color="#006666"]500.0f,0.0f[color="#666600"]);
vertice plane_b[color="#666600"]([color="#006666"]720.0f[color="#666600"], [color="#006666"]500.0f,0.0f[color="#666600"]);
vertice plane_c[color="#666600"]([color="#006666"]720.0f[color="#666600"], [color="#006666"]300.0f,0.0f[color="#666600"]);
vertice plane_d[color="#666600"]([color="#006666"]700.0f[color="#666600"], [color="#006666"]300.0f,0.0f[color="#666600"]);

vector a(a,c);
vector b(b,c);//these constructors are defined as head - tail so the vector here is going to be c.x - b.x, c.y - b.y, c.z - b.z

vector crossvec = crossprod(a,b);
//crossprod is:
// C[size="-2"]x = A[size="-2"]yB[size="-2"]z - A[size="-2"]zB[size="-2"]y
//C[size="-2"]y = A[size="-2"]zB[size="-2"]x - A[size="-2"]xB[size="-2"]z
//C[size="-2"]z = A[size="-2"]xB[size="-2"]y - A[size="-2"]yB[size="-2"]x

//now you want to normalize the crossproduct you do that via sqrt(x^2 + y^2 + z^2) and then divide each of its coordinates by the value obtained. Last but not least you add the resultant vector (which is going to be 0,0,1 or ideally close to it) to one of the planes four vertices. Yeah, the normal here is one along the z but the method I described works for any plane orientation.


"It's like naming him Asskicker Monstertrucktits O'Ninja" -Khaiy

Well I dont know a lot about this ray casting stuff,I'm assuming you ray cast by using a 2D grid to project 3D images.
Anyways, in order to calculate normal in 2D all you have to do is calculate the vector By subtracting Point2 by Point1 .
The result is a vector in the pointing in the direction of Point2 ;
Math looks like this:
Edge Vector =>P2.X-P1.X, P2.Y-P1.Y
Now you can get the left or right normal of this vector.
right normal => -*Edge.Y,Edge.X
left normal => Edge.Y,-*Edge.X
good work! like straight out of the book :-)

For a plane normal you need a third dimension. Then you take two edges of the plane that share the same corners, make vectors of them, take the cross product of those vectors and then normalize the cross product. So let's give your plane a z axis... and put them in a vertex (pseudo) class so the data can be manipulated by us...

vertice plane_a[color="#666600"]([color="#006666"]700.0f[color="#666600"], [color="#006666"]500.0f,0.0f[color="#666600"]);
vertice plane_b[color="#666600"]([color="#006666"]720.0f[color="#666600"], [color="#006666"]500.0f,0.0f[color="#666600"]);
vertice plane_c[color="#666600"]([color="#006666"]720.0f[color="#666600"], [color="#006666"]300.0f,0.0f[color="#666600"]);
vertice plane_d[color="#666600"]([color="#006666"]700.0f[color="#666600"], [color="#006666"]300.0f,0.0f[color="#666600"]);

vector a(a,c);
vector b(b,c);//these constructors are defined as head - tail so the vector here is going to be c.x - b.x, c.y - b.y, c.z - b.z

vector crossvec = crossprod(a,b);
//crossprod is:
// C[size="-2"]x = A[size="-2"]yB[size="-2"]z - A[size="-2"]zB[size="-2"]y
//C[size="-2"]y = A[size="-2"]zB[size="-2"]x - A[size="-2"]xB[size="-2"]z
//C[size="-2"]z = A[size="-2"]xB[size="-2"]y - A[size="-2"]yB[size="-2"]x

//now you want to normalize the crossproduct you do that via sqrt(x^2 + y^2 + z^2) and then divide each of its coordinates by the value obtained. Last but not least you add the resultant vector (which is going to be 0,0,1 or ideally close to it) to one of the planes four vertices. Yeah, the normal here is one along the z but the method I described works for any plane orientation.



I open sourced my C++/iOS OpenGL 2D RPG engine :-)



See my blog: (Tutorials and GameDev)


[size=2]http://howtomakeitin....wordpress.com/

This topic is closed to new replies.

Advertisement