Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

25
votes
5answers
2k views

Why does OpenGL use degrees instead of radians?

The OpenGL designers were never afraid of mathematics, and knowledge of linear algebra is essential for all but the simplest OpenGL applications. I think it can safely be assumed that OpenGL ...
11
votes
16answers
27k views

Computer Science v.s. Computer Information Systems v.s. Management Information Systems

From the opinions of professional world perspectives, what are the respective differences between CS, CIS and MIS? I'm asking this because I'm going to school ready to start a Computer Science ...
3
votes
1answer
205 views

cos result incorrect

I import "math.h". I can use the cos function, but when I execute cos(0.321139585333178) the result is 0.948876 If I use the calculator in Mac or use a normal calculator, the result is ...
3
votes
2answers
719 views

Can Google Maps plot points based on Hours Minutes Seconds

I'm trying to plot out GPS data that is given to me in Hour Minute Second degree format. Will GLatLng take it in this form or do I need to convert it first. Having a hard time finding anything on the ...
2
votes
1answer
452 views

Converting longitude latitude degrees to miles in Java

How do you convert degrees (longitude latitude) to miles in Java? For example if I want to move longitude by 69.11 miles, I add 1 degree. Do I do simple calculation or should I use some kind of API. ...
2
votes
2answers
680 views

Calculating degrees between 2 points with inverse Y axis

I'm creating a simple 2D game in javascript/canvas. I need to figure out the angle of a certain object relative to my position. So: say I'm at (10,10) and the object is at (10,5) - that would result ...
1
vote
2answers
39 views

How to transform degrees (angle) to facing number

I have a image which contains 40 rotated images. With image index starting at 0. 0-39 actually. Here is the code which transforms 0-39 to degrees int image_direction = 0; //Can be 0-39 int ...
1
vote
2answers
91 views

Calculating angle when sine is known

How can I calculate the angle in degrees when Math.Sin is known? Asine will work? and multiply it by 180 and divide by pi?
1
vote
4answers
115 views

Java find number of degrees to rotate?

I am trying to find a method which will rotate an object to make it face a specified point, however the numbers I am getting don't make much sense and I don't think I understand what the math methods ...
1
vote
1answer
88 views

Actionscript3.0 - Why the value of Math.cos(35.26) is Minus?

trace(Math.cos(45)); //0.5253219888177297 trace(Math.cos(30)); //0.15425144988758405 trace(Math.cos(35.264)); //-0.7606511017750149 I'm confused. Do I need to lean Math at the Middle School?
1
vote
3answers
603 views

Confused about degrees and OpenGL/GLUT camera movement/rotation

NOTICE: I have edited the question below which is more relevant to my real issue than the text right below, you can skip this if you but I'll leave it here for historic reasons. To see if I get this ...
1
vote
3answers
317 views

python convert degrees to change in x and change in y

I am making a snake game in python with pygame and for moving the character I have a integer which is the degrees of the angle it should move. Is there any way I can get the change in x and y to move ...
1
vote
2answers
2k views

CLLocationManager and degrees of heading in iPhone

Using the CLLocationManager object's didUpdateHeading event, how do I convert the resulting heading.x and heading.y values into degrees I can plot onto an image of a compass?
0
votes
3answers
45 views

Convert decimal coordinate into degrees, minutes, seconds, direction

I have the following so far, but can't figure out a tidy way to get the direction letters in without a bunch of messy if statements. Any ideas? Ideally I'd like to extend the CLLocation class with a ...
0
votes
2answers
33 views

degree symbol in TextView

I want to know how to make a degree symbol for an angle in a Text View (android). There are a few questions similar to this, I have tried them but they don't seem to work. <TextView ...
0
votes
1answer
174 views

Rectangle Rotation and Flipping

I have a bitmap with a Rectangle object that is drawn on top of it. I want to be able to RotateFlip the bitmap and adjust the x, y, width, and height of the Rectangle so that it lines up with the ...
0
votes
1answer
242 views

Actionscript 3.0 Rotating a sprite around its center point

I searched online and found this script that is supposed to rotate and image but I'm not sure how to use, where to put in the degree angle that I want my sprites to rotate by. Also, I get an error. ...
0
votes
2answers
522 views

Actionscript 3.0 Rotating an Image, by 90 degrees, that was loaded from a url

I got an error saying "Attempted access of inaccessible method rotation through a reference with static type flash.display:Sprite.ssd.rotation(90)}" I just want to know how to rotate my image by ...
0
votes
2answers
115 views

How to convert mouse movements to rotation of an element

I'm building a wheel menu control. The idea is you spin the wheel until the item you want to act on is in view, then you click on it or whatever. I'm trying to figure out how to translate the user's ...
0
votes
1answer
384 views

import degree symbol (°) from excel or csv file to mssql database

I have a field in my csv file which contains the text: Frozen at 20°C but when i import into my database it appears as: Frozen at 20�C anyone know how i can keep the correct degree symbol? my ...
0
votes
1answer
178 views

AS3 equivalent of PHP's deg2rad

Hey all, what is the Actionscript 3 equivalent of PHP's deg2rad function?
0
votes
4answers
775 views

Lat Long to Minutes and Seconds?

Google Maps gives me the Lat and Long of a location in decimal notation like this: 38.203655,-76.113281 How do I convert those to Coords (Degrees, Minutes , Seconds)