active questions tagged angle - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T20:13:42Zhttp://stackoverflow.com/feeds/tag/anglehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1821327/get-the-slope-from-one-point-and-an-angle-in-degrees1Get the slope from one point and an angle in degrees.Phobis2009-11-30T17:55:47Z2009-12-01T14:24:00Z
<p>In javascript, I am trying to draw a line that is at an angle that is user defined.</p>
<p>Basically, I have a point (x,y) and an angle to create the next point at. The length of the line need to be 10px. </p>
<p>Let's say that the point to start with is (180, 200)... if I give it angle "A" and the (I guess)hypotenuse is 10, what would my equation(s) be to get the X and Y for a slope?</p>
<p>Thanks for your help!</p>
http://stackoverflow.com/questions/1803043/trace-an-arrow-toward-a-specific-angle4Trace an arrow toward a specific angleAurélien2009-11-26T11:03:55Z2009-11-27T16:36:19Z
<p>Hey everyone,</p>
<p>I am working in MATLAB and I'm stuck on a very simple problem: I've got a object defined by its position <code>(x,y)</code> and <code>theta</code> (an angle, in degrees). I would like to plot the point and add an arrow, starting from the point and pointing toward the direction defined by the angle. It actually doesn't even have to be an arrow, anything graphically showing the value of the angle will do !</p>
<p>Here's a picture showing the kind of thing I'm trying to draw: <a href="http://img510.imageshack.us/img510/4253/image1mk.png" rel="nofollow">Example</a></p>
http://stackoverflow.com/questions/1641808/comparing-cross-point-between-2-images-in-matlab2Comparing cross point between 2 images in MATLABVeronica2009-10-29T05:47:17Z2009-11-10T14:57:01Z
<p>Hello,</p>
<p>I took 2 images with a cross point and now I'm trying to compare these 2 images and find out what is the distance and angle moved. How can I use MATLAB to do this? Thank you very much!</p>
<p><img src="http://farm4.static.flickr.com/3494/4055134756%5F2781fb9534.jpg" alt="Pic3" />
<img src="http://farm3.static.flickr.com/2601/4054392111%5F38265ae655.jpg" alt="Pic2" /></p>
http://stackoverflow.com/questions/1581267/find-if-an-angle-is-within-x-degrees-from-another2Find if an angle is within X degrees from anotherCharlie Somerville2009-10-17T02:49:38Z2009-10-17T03:38:41Z
<p>I need an algorithm to figure out if one angle is within a certain amount of degrees from another angle.</p>
<p>My first thought was <code>(a-x < b) && (a+x > b)</code>, but it fails when it has to work with angles that wrap around from -179 to 180.</p>
<p><img src="http://imgkk.com/i/CQmC4h.png" /></p>
<p>In the diagram above, the region (green) that the angle must be between wraps between the negative and positive sides. How can I determine whether the angle (the red line) falls inside this region?</p>
http://stackoverflow.com/questions/1505417/global-angle-of-3d-vectors2Global angle of 3d vectorstm1rbrt2009-10-01T17:46:13Z2009-10-01T23:49:01Z
<p>I have 3 Vectors, Up Right and Front that represent a direction.</p>
<p>I need to convert these into an XYZ angle (3 floats) so i can use with glRotatef()</p>
<p>Please help</p>
<p>[EDIT]</p>
<p>Its not rendering properly. can you see if its anything blatant here: <a href="http://pastebin.com/f6683492d" rel="nofollow">pastebin.com/f6683492d</a> </p>
http://stackoverflow.com/questions/1473314/bandwidth-of-pm-signal0bandwidth of PM signal [closed]asel2009-09-24T18:18:43Z2009-09-24T19:12:21Z
<p>hi can you tell me what is the bandwidth of phase modulated signal?
thanks</p>
http://stackoverflow.com/questions/1371808/flipping-an-angle-horizontally0Flipping an angle horizontallyDalGr2009-09-03T07:01:22Z2009-09-21T19:47:52Z
<p>I want to know a way to flip an angle in a horizontal axis, without having to do many operations. Say I have an angle of 0 ("pointing right" in my code's coordinate system), the flipped angle should be 180 (pointing left). If 90 (pointing up), flipped it should still be 90. 89 is 91, and so on.
I can operate on the X/Y speeds implied by the angle but that would slow things down, and I feel it's not the proper way to go.
I don't know much math so I might be calling things by the wrong name...Can anyone help?</p>
<p>EDIT: Sorry I took long, I had to be out of the computer for long, OK...
<a href="http://img215.imageshack.us/img215/8095/screenshot031v.jpg" rel="nofollow">http://img215.imageshack.us/img215/8095/screenshot031v.jpg</a></p>
<p>This screenshot might do.The above structure are two satellites and a beam linked to the white dot in the center. The two satellites should inherit the angle of the white dot (it's visible for debug purposes), so if it's aiming at an angle, they will follow. The satellite at the left is mirrored, so I calculated it with 180-angle as suggested, although it was my first try as well. As you can see it is not mirrored but flipped. And when the white dot rotates, it rotates backwards. The other does alright.</p>
<p>This is the angle recalculation for something linked to something else, pid would be the parent, and id the current. pin.ang is the angle offset copied when the object is linked to another, so it keeps position when rotated:</p>
<p><code>
if(object[id].mirror) object[id].angle = 180 - (object[id].pin.ang + object[pid].angle);
else object[id].angle = object[id].pin.ang + object[pid].angle;
</code></p>
<p>And this is the specific rotation part. OpenGL. the offx/y is for things rotated off-center, like the beam about to come out there, it renders everything else right.</p>
<p><code>
glTranslatef(list[index[i]].x, list[index[i]].y, 0);
glRotatef(list[index[i]].angle, 0.0, 0.0, 1.0);
glTranslatef(list[index[i]].offx, -list[index[i]].offy, 0);
</code></p>
<p>The rotation also seems to miss when the rotation speed (an integer added every redraw to the current angle, positive for rotating clockwise, like in this next one:
<a href="http://img216.imageshack.us/img216/7/screenshot032ulr.jpg" rel="nofollow">http://img216.imageshack.us/img216/7/screenshot032ulr.jpg</a></p>
<p>So it's definitely not 180-angle, despite how obvious it'd be. The mirroring is done by just reversing the texture coordinates so it doesn't affect angle. I am afraid it might be a quirk on the GL rotation thing.
Again, I am sorry for the bad explanation, despite having an engine working OK (except for annoyances like this one), I am not much of a coder, just a designer... </p>
http://stackoverflow.com/questions/1365415/programming-a-smooth-change-of-thrust-from-current-velocity-vector-to-a-target-ve5Programming a smooth change of thrust from current velocity vector to a target vector.cmpstudio2009-09-02T01:05:11Z2009-09-03T04:50:45Z
<p>TL;dr: "I am not sure how to calculate a smooth transition of thrust between one vector and another."</p>
<p>I am programming a simple game where an enemy chases after the player in an open space (no walls). I was calculating the enemy's x & y velocities independently, accelerating them if they were taking them in the direction of the player and quickly slowing them if they were going the wrong way (e.g. EnemyVelocity.x > 0 & player.x < enemy.x, then EnemyVelocity.x - 2.)</p>
<p>While the gameplay is decently fun trying to dodge the enemy, it is my desire to have the enemy behave using proper physics. What I am currently doing is have the enemy set their thrust (think a spaceship) based on the angle between them and the player, and have their thrust accelerate up to a max speed (calculating side c of the EnemyVelocity triangle). Once that happens, I'm not sure the best way to have the thrust adjust itself. If I leave no max speed, the enemy accelerates nicely but will easily overshoot the player, and then take a long time to get enough momentum heading back in the player's direction.</p>
<p>What I'd like to happen is have the enemy constantly adjust their velocity on the way to the player, targeting wherever they are at (I don't want them to predict where you will be). Then, when they miss the player, I'd like for the same thrust & acceleration formulas to readjust their velocity and send them back at the player.</p>
<p>I'm thinking this will involve two vectors: one where the enemy is currently traveling, and one where the enemy wants to travel (the vector that will take them straight to the player). I am not sure how to calculate a smooth transition of thrust between one vector and another.</p>
<p>Any tips, formulas or questions will be much appreciated! Thank you Stack Overflow.</p>
http://stackoverflow.com/questions/1158909/average-of-two-angles-with-wrap-around4Average of two angles with wrap around [closed]mizipzor2009-07-21T12:33:15Z2009-09-02T17:22:26Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br />
<a href="http://stackoverflow.com/questions/491738/how-do-you-calculate-the-average-of-a-set-of-angles">How do you calculate the average of a set of angles?</a> </p>
</blockquote>
<p>I have two angles, a=20 degrees and b=350 degrees. The average of those two angles are 185 degrees. However, if we consider that the maximum angle is 360 degrees and allows for wrap around, one could see that 5 degrees is a closer average. </p>
<p>I'm having troubles coming up with a good formula to handle that wrap around when calculating average. Anyone got any hints?</p>
<p>Or am I shooting myself in the foot here? Is this considered "bad practice" in math?</p>
http://stackoverflow.com/questions/1251828/how-to-convert-cartesian-coordinates-to-euler-rotations-in-3d1How to convert cartesian coordinates to euler rotations in 3D?Jeremy Rudd2009-08-09T17:41:10Z2009-09-02T01:02:45Z
<p>I have a 3D point in cartesian coordinates, how can I get the euler rotation angles of it based on its distance from 0,0,0?</p>
http://stackoverflow.com/questions/1320551/how-do-i-determine-whether-a-number-is-within-a-percentage-of-another-number1How do I determine whether a number is within a percentage of another numberwillc22009-08-24T05:01:09Z2009-08-25T18:17:04Z
<p>I'm writing iPhone code that fuzzily recognizes whether a swiped line is straight-ish. I get the bearing of the two end points and compare it to 0, 90, 180 and 270 degrees with a tolerance of 10 degrees plus or minus. Right now I do it with a bunch of if blocks, which seems super clunky.</p>
<p>How to write a function that, given the <strong>bearing</strong> 0..360, the <strong>tolerance</strong> percentage (say 20% = (-10° to +10°)) and a straight <strong>angle</strong> like 90 degrees, returns whether the bearing is within the tolerance?</p>
<p><strong>Update:</strong> <em>I am, perhaps, being too specific.</em> I think a nice, general function that determines whether a number is within a percentage of another number has utility in many areas.</p>
<p>For instance: Is the number <strong>swipeLength</strong> within <strong>10%</strong> of <strong>maxSwipe</strong>? That would be useful.</p>
<pre><code> BOOL isNumberWithinPercentOfNumber(float firstN, float percent, float secondN) {
// dunno how to calculate
}
BOOL result;
float swipeLength1 = 303;
float swipeLength2 = 310;
float tolerance = 10.0; // from -5% to 5%
float maxSwipe = 320.0;
result = isNumberWithinPercentOfNumber(swipeLength1, tolerance, maxSwipe);
// result = NO
result = isNumberWithinPercentOfNumber(swipeLength2, tolerance, maxSwipe);
// result = YES
</code></pre>
<p>Do you see what I'm getting at?</p>
http://stackoverflow.com/questions/1055062/how-to-calculate-a-point-on-a-rotated-axis0How to calculate a point on a rotated axis?Jeremy Rudd2009-06-28T14:57:00Z2009-06-28T15:04:25Z
<p>How can I calculate a point (X,Y) a specified distance away, on a rotated axis? I know what angle I'd like the point "moving" along (in degrees).</p>
http://stackoverflow.com/questions/1026763/given-an-angle-and-dimensions-find-a-coordinate-along-the-perimeter-of-a-rectang2Given an angle and dimensions, find a coordinate along the perimeter of a rectangleAndy E2009-06-22T11:53:02Z2009-06-24T12:42:32Z
<p>I'm writing a script where icons rotate around a given pivot (or origin). I've been able to make this work for rotating the icons around an ellipse but I also want to have them move around the perimeter of a rectangle of a certain width, height and origin.</p>
<p>I'm doing it this way because my current code stores all the coords in an array with each angle integer as the key, and reusing this code would be much easier to work with.</p>
<p>If someone could give me an example of a 100x150 rectangle, that would be great.</p>
<p><strong>EDIT:</strong> to clarify, by rotating around I mean moving around the perimeter (or orbiting) of a shape.</p>
http://stackoverflow.com/questions/786472/rotate-a-point-by-an-angle1Rotate a point by an angleJames2009-04-24T15:55:57Z2009-06-24T12:08:31Z
<p>I want to know how to work out the new co-ordinates for a point when rotated by an angle relative to another point.</p>
<p>I have a block arrow and want to rotate it by an angle theta relative to a point in the middle of the base of the arrow.</p>
<p>This is required to allow me to draw a polygon between 2 onscreen controls. I can't use and rotate an image.</p>
<p>From what I have considered so far what complicates the matter further is that the origin of a screen is in the top left hand corner.</p>
http://stackoverflow.com/questions/1010423/plot-line-at-particular-angle-and-offset0plot line at particular angle and offsetCEJ2009-06-18T02:02:47Z2009-06-18T03:37:30Z
<p>I'm attempting to plot a particular line over an original image (an array) that i have. Basically, I have an angle and offset (measured from the center of the image) that I want to plot the line over. The problem is, I'm not exactly sure how to do this. I can write a really complicated piece of code to do this, but I'm wondering if there's an easier way that I don't know of (maybe with matplotlib). Thanks.</p>
http://stackoverflow.com/questions/365532/rotating-an-image-in-all-browsers-canvas-in-ie1Rotating an image in all browsers (canvas in IE?)Tom2008-12-13T18:20:46Z2009-06-02T07:10:26Z
<p>I finally got to work with canvas only to find out that it is not implemented in IE. I tried explore canvas from google to use it in Internet Explorer, but it's not working for my code (<a href="http://uptowar.com/test.php" rel="nofollow">http://uptowar.com/test.php</a> - little bug though that it is not removing the old image when rotating).</p>
<p>So, is there an other way to smoothly rotate an image around it's bottom center angle? Maybe javascript? Or is there a way to do it with IE and canvas anyway?</p>
<p>Edit: Google Chrome also seems to add an ugly border to the canvas example.. there must be an other smooth way?</p>
<p>Edit2: tried a hacky javascript way: it causes mayor lags and corrupts the image (<a href="http://uptowar.com/test2.php" rel="nofollow">http://uptowar.com/test2.php</a>), anyone knows of a working method?</p>
http://stackoverflow.com/questions/932796/how-to-parse-angular-values-using-regular-expressions3How to parse angular values using regular expressionsEric2009-05-31T20:33:01Z2009-05-31T21:15:01Z
<p>Hi, I have very little experience using regular expressions and I need to parse an angle value expressed as bearings, using regular expressions, example:</p>
<p>"N45°20'15.3"E" </p>
<p>Which represents:
45 degrees, 20 minutes with 15.3 seconds, located at the NE quadrant.</p>
<p>The restrictions are:</p>
<ul>
<li>The first character can be "N" or "S"</li>
<li>The last character can be "E" or "W"</li>
<li>0 <= degrees <= 59 </li>
<li>0 <= minutes <= 59 </li>
<li>0 <= second < 60, this can be ommited.</li>
</ul>
<p>Python preferably or any other language.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/713712/how-to-find-angle-of-rotation-of-iphone1How to find Angle of Rotation of iphone?Jyotsna2009-04-03T12:29:51Z2009-04-03T19:42:49Z
<p>Hi to all</p>
<p>I want to calculate angle of rotation when I am rotating the iphone from portrait mode to Landscape right or Landscape left but in YX plane. In my game I want to rotate one object respect to iphone but in opposite direction. If I will move iphone from portrait mode to Landscape right by 30 degree then I want to move object 30 degree only but to landscape right.
I have formula of dot product like</p>
<p>v1.v2=L1.L2cos(θ)
but i dont know the exact solution so.
So if any one know it please help me out
Thanks in advance.</p>
http://stackoverflow.com/questions/693806/how-to-determine-whether-v3-is-between-v1-and-v2-when-we-go-from-v1-to-v2-counter2How to determine whether V3 is between V1 and V2 when we go from V1 to V2 counterclockwise?Kamran Bigdely Shamloo2009-03-28T23:52:23Z2009-03-30T12:45:28Z
<p>I have three vectors V1, V2, and V3. Their origin points are on the axes' origin. How could I determine whether V3 is between V1 and V2 when I move around counterclockwise from V1 to V2?</p>
<p><img src="http://www.freeimagehosting.net/uploads/1448ea8896.jpg" alt="alt text" /></p>
<p>It can't be done with obtaining their angles and evaluating these kind of conditions (pseudo-code):</p>
<pre><code>if angle(V3) > angle(V1) && angle(V3) < angle(V2)
printf("V3 is between V1 and V2")
else
printf("out of the interval")
</code></pre>
<p>To see its defect, suppose that the <code>angle</code> function gives angles in the range of [-pi pi]. So, if angle(V1) = 120 (in degree), angle(V2) = -130 and angle(V3) = 150 then the answer (according to the above code) is "out of the interval" although if you move around counterclockwise from V1 to V2, it is between them.</p>
<p>You may suggest adding 2*pi to angle(V2) or something like that, but I've tried such things and it doesn't work.</p>
<p>I'm programming in MATLAB.</p>
<p>EDIT 1 : it is in 2D.</p>
http://stackoverflow.com/questions/676959/how-to-determine-polygon-rotation-angle0how to determine polygon rotation anglemimix2009-03-24T11:16:24Z2009-03-24T12:59:49Z
<p>I am writing a program (.net) to create a stadium style layout and need to determine the angle of rotation for each polygon compared to the horizontal.</p>
<p>This is so i can construct the contents of the polygon and also rotate this correctly to fit inside.</p>
<p>Given the below image as an example to simulate each variant of the facing direction (indicated by the red line) how could i determine the the rotation angle needed to get the shape to have the red line on top as is already shown by shape 5.</p>
<p><a href="http://i40.tinypic.com/16ifhoo.gif" rel="nofollow" title="Polygons">http://i40.tinypic.com/16ifhoo.gif</a>
<img src="http://i40.tinypic.com/16ifhoo.gif" alt="alt text" /></p>
<p>I have found logic to determine the angle of the points that make up the red line, but I also need to know the rotation to get it back to horizontal.</p>
<p>I'm not sure if i need some central reference point for all polygons to help.</p>
<p>How could I best solve this?</p>
http://stackoverflow.com/questions/674225/calculating-point-on-a-circles-circumference-from-angle-in-c2Calculating point on a circle's circumference from angle in C#?x40002009-03-23T16:57:06Z2009-03-23T18:20:36Z
<p>I imagine that this is a simple question, but I'm getting some strange results with my current code and I don't have the math background to fully understand why. My goal is simple, as stated in the title: I just want to find the point at some distance and angle from a center point.</p>
<p>My current code:</p>
<pre><code>Point centerPoint = new Point ( 0, 0 );
Point result = new Point ( 0, 0 );
double angle = 0.5; //between 0 and 2 * PI, angle is in radians
int distance = 1000;
result.Y = centerPoint.Y + (int)Math.Round( distance * Math.Sin( angle ) );
result.X = centerPoint.X + (int)Math.Round( distance * Math.Cos( angle ) );
</code></pre>
<p>In general, this seems to work fairly reasonably, but I get problems at various spots, most notably when the angle corresponds to points in the negative x and y axis. Clearly I'm doing something wrong -- thoughts on what that is?</p>
<p>UPDATE: This was my mistake, this code works fine -- the few outliers that were not working were actually due to a bug in how the angle for 1.5PI was being calculated. I thought I had checked that well enough, but evidently had not. Thanks to everyone for their time, hopefully the working code above will prove helpful to someone else.</p>
http://stackoverflow.com/questions/576162/math-help-cant-rotate-something-knowing-java-would-be-a-plus0Math help - Can't rotate something (knowing Java would be a plus)William2009-02-23T00:21:30Z2009-02-23T01:21:57Z
<p>Okay I'm trying to rotate a Java Polygon based on it's original position of angle 0. x, and y end up being converted to an int at the end of me using them, so I could understand not seeing some change, but when the difference in angles is big like 0 to 180 I think I should see <strong>something</strong>. </p>
<p>I've been at this for a little while and can't think of what it is. Here's the method. (Sorry if it messes up in the code tags, my firefox messes them up.)</p>
<pre><code>public void rotate(double x, double y, obj o1)
{
double dist = Math.sqrt(Math.pow(x - (o1.x + (o1.w/2)), 2) + Math.pow(y - (o1.y + (o1.h/2)),2));
x += (Math.sin(Math.toRadians(o1.a)) * dist);
y -= (Math.cos(Math.toRadians(o1.a)) * dist);
}
</code></pre>
http://stackoverflow.com/questions/534424/math-in-wpf-getting-new-x-y-coordinates-after-a-translation1Math (in WPF): Getting new x,y coordinates after a translationAndreas Grech2009-02-10T22:04:45Z2009-02-10T23:26:49Z
<p><em>With reference to <a href="http://stackoverflow.com/questions/505040/developing-a-robocode-type-game-with-net-for-a-school-assignment">this programming game</a> I am currently building.</em></p>
<p>I am using WPF to animate canvases, and I am using the <code>BeginAnimation</code> method to translate (move) a canvas across another canvas.</p>
<p>With the BeginAnimation, I need to specify the <code>From</code> and <code>To</code> coordinates for both x and y, and this is the method I am using this like such:</p>
<pre><code>//X
Animator_Body_X.From = Translate_Body.X; //Current x-coordinate
Animator_Body_X.To = //The end X-coordinate
Translate_Body.BeginAnimation(TranslateTransform.XProperty, Animator_Body_X);
//Y
Animator_Body_Y.From = Translate_Body.Y; //Current y-coordinate
Animator_Body_Y.To = //The end Y-coordinate
Translate_Body.BeginAnimation(TranslateTransform.YProperty, Animator_Body_Y);
</code></pre>
<p>Now the canvas needs to be translated using a given angle, which I have available from the method.</p>
<p>So my question is, <strong>given the angle (0-359) the canvas is currently rotated at, starting x and y coordinates (of where the canvas is currently situated) and distance (in px), how do I calculate to end coordinates?</strong> ie to where the canvas will finally be translated to.</p>
<p><img src="http://img244.imageshack.us/img244/4794/canvastranspositionmi5.jpg" alt="alt text" /></p>
<p>In the above image, I have drawn an example of what I want to achieve.</p>
<p>Suppose the canvas (solid-border box) has a current heading (angle) of 130 degrees, and it needs to be translated (following a path down that angle; ie depending on where it is currently facing) by 200 pixels...what will be the new coordinates (where it will stop animating: dashed-border box) of the canvas? How do I calculate these new coordinates of where it will stop?</p>
<p><strong>[UPDATE] Solution:</strong></p>
<p>Thanks to the help of both <a href="http://stackoverflow.com/questions/534424/math-in-wpf-getting-new-x-y-coordinates-after-a-translation/534475#534475">Andy</a> and <a href="http://stackoverflow.com/questions/534424/math-in-wpf-getting-new-x-y-coordinates-after-a-translation/534628#534628">Cameron</a>, it is finally working as intended. </p>
<p>And here is the working code:</p>
<pre><code>double headingRadians = Heading * (Math.PI / 180);
Animator_Body_X.From = Translate_Body.X;
Animator_Body_X.To = Math.Sin(headingRadians) * pix + Translate_Body.X;
Translate_Body.BeginAnimation(TranslateTransform.XProperty, Animator_Body_X);
Animator_Body_Y.From = Translate_Body.Y;
Animator_Body_Y.To = ((Math.Cos(headingRadians) * pix) * -1) + Translate_Body.Y;
Translate_Body.BeginAnimation(TranslateTransform.YProperty, Animator_Body_Y);
</code></pre>
http://stackoverflow.com/questions/338762/how-do-you-calculate-the-angle-between-two-normals-in-glsl2How do you calculate the angle between two normals in glsl?Levi2008-12-03T21:25:16Z2008-12-04T11:17:30Z
<p>How do you calculate the angle between two normals in glsl? I am trying to add the fresnel effect to the outer edges of an object (combining that effect with phong shading), and I think that the angle is the only thing I am missing.</p>
<p>Fragment Shader:</p>
<pre><code>varying vec3 N;
varying vec3 v;
void main(void) {
v = vec3(gl_ModelViewMatrix * gl_Vertex);
N = normalize(gl_NormalMatrix * gl_Normal);
gl_Position = gl_ModelViewProjectionMatrix * gl_Vertex;
}
</code></pre>
<p>Vertex Shader:</p>
<pre><code>varying vec3 N;
varying vec3 v;
void main(void) {
vec3 L = normalize(gl_LightSource[0].position.xyz - v);
vec3 E = normalize(-v);
vec3 R = normalize(-reflect(L,N));
vec4 Iamb = gl_FrontLightProduct[0].ambient
vec4 Idiff = gl_FrontLightProduct[0].diffuse * max(dot(N,L), 0.0);
vec4 Ispec = gl_FrontLightProduct[0].specular * pow(max(dot(R,E),0.0), gl_FrontMaterial.shininess);
vec4 Itot = gl_FrontLightModelProduct.sceneColor + Iamb + Idiff + Ispec;
vec3 A = //calculate the angle between the lighting direction and the normal//
float F = 0.33 + 0.67*(1-cos(A))*(1-cos(A))*(1-cos(A))*(1-cos(A))*(1-cos(A));
vec4 white = {1.0, 1.0, 1.0, 1.0};
gl_FragColor = F*white + (1.0-F)*Itot;
}
</code></pre>
<p>varying vec3</p>
http://stackoverflow.com/questions/89490/annuity-or-angle-operation-symbol-in-latex1Annuity or Angle Operation Symbol in LaTeXJoseph Holsten2008-09-18T02:30:01Z2008-10-08T12:03:29Z
<p>How do I set the symbol for the <em>angle</em> or <em>annuity</em> operation in LaTeX? Specifically, this is the actuarial <em>a</em> angle <em>s</em> = (1-v<sup>s</sup>)/i.</p>